-- phpMyAdmin SQL Dump
-- version 5.2.2
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Apr 07, 2026 at 10:56 AM
-- Server version: 11.4.10-MariaDB-cll-lve-log
-- PHP Version: 8.3.30

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Database: `mrarqpph_drsarah`
--

-- --------------------------------------------------------

--
-- Table structure for table `wpd_commentmeta`
--

CREATE TABLE `wpd_commentmeta` (
  `meta_id` bigint(20) UNSIGNED NOT NULL,
  `comment_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpd_comments`
--

CREATE TABLE `wpd_comments` (
  `comment_ID` bigint(20) UNSIGNED NOT NULL,
  `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
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpd_comments`
--

INSERT INTO `wpd_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(1, 1, 'A WordPress Commenter', 'wapuu@wordpress.example', 'https://wordpress.org/', '', '2026-04-05 07:05:10', '2026-04-05 07:05:10', 'Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com/\">Gravatar</a>.', 0, '1', '', 'comment', 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpd_e_events`
--

CREATE TABLE `wpd_e_events` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `event_data` text DEFAULT NULL,
  `created_at` datetime NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpd_e_notes`
--

CREATE TABLE `wpd_e_notes` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `route_url` text DEFAULT NULL COMMENT 'Clean url where the note was created.',
  `route_title` varchar(255) DEFAULT NULL,
  `route_post_id` bigint(20) UNSIGNED DEFAULT NULL COMMENT 'The post id of the route that the note was created on.',
  `post_id` bigint(20) UNSIGNED DEFAULT NULL,
  `element_id` varchar(60) DEFAULT NULL COMMENT 'The Elementor element ID the note is attached to.',
  `parent_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `author_id` bigint(20) UNSIGNED DEFAULT NULL,
  `author_display_name` varchar(250) DEFAULT NULL COMMENT 'Save the author name when the author was deleted.',
  `status` varchar(20) NOT NULL DEFAULT 'publish',
  `position` text DEFAULT NULL COMMENT 'A JSON string that represents the position of the note inside the element in percentages. e.g. {x:10, y:15}',
  `content` longtext DEFAULT NULL,
  `is_resolved` tinyint(1) NOT NULL DEFAULT 0,
  `is_public` tinyint(1) NOT NULL DEFAULT 1,
  `last_activity_at` datetime DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpd_e_notes_users_relations`
--

CREATE TABLE `wpd_e_notes_users_relations` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `type` varchar(60) NOT NULL COMMENT 'The relation type between user and note (e.g mention, watch, read).',
  `note_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpd_e_submissions`
--

CREATE TABLE `wpd_e_submissions` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `type` varchar(60) DEFAULT NULL,
  `hash_id` varchar(60) NOT NULL,
  `main_meta_id` bigint(20) UNSIGNED NOT NULL COMMENT 'Id of main field. to represent the main meta field',
  `post_id` bigint(20) UNSIGNED NOT NULL,
  `referer` varchar(500) NOT NULL,
  `referer_title` varchar(300) DEFAULT NULL,
  `element_id` varchar(20) NOT NULL,
  `form_name` varchar(60) NOT NULL,
  `campaign_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `user_ip` varchar(46) NOT NULL,
  `user_agent` text NOT NULL,
  `actions_count` int(11) DEFAULT 0,
  `actions_succeeded_count` int(11) DEFAULT 0,
  `status` varchar(20) NOT NULL,
  `is_read` tinyint(1) NOT NULL DEFAULT 0,
  `meta` text DEFAULT NULL,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpd_e_submissions`
--

INSERT INTO `wpd_e_submissions` (`id`, `type`, `hash_id`, `main_meta_id`, `post_id`, `referer`, `referer_title`, `element_id`, `form_name`, `campaign_id`, `user_id`, `user_ip`, `user_agent`, `actions_count`, `actions_succeeded_count`, `status`, `is_read`, `meta`, `created_at_gmt`, `updated_at_gmt`, `created_at`, `updated_at`) VALUES
(1, 'submission', '2c3afaa0-2936-439e-95c7-49e744d75fed', 3, 14, 'https://mrarif.me/drsarah/refer-a-patient/', 'Refer a Patient', 'e3d4577', 'Refer A Patient', 0, 1, '45.120.96.21', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36', 1, 1, 'new', 0, '{\"edit_post_id\":\"14\"}', '2026-04-07 07:16:36', '2026-04-07 07:16:36', '2026-04-07 07:16:36', '2026-04-07 07:16:36');

-- --------------------------------------------------------

--
-- Table structure for table `wpd_e_submissions_actions_log`
--

CREATE TABLE `wpd_e_submissions_actions_log` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `submission_id` bigint(20) UNSIGNED NOT NULL,
  `action_name` varchar(60) NOT NULL,
  `action_label` varchar(60) DEFAULT NULL,
  `status` varchar(20) NOT NULL,
  `log` text DEFAULT NULL,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpd_e_submissions_actions_log`
--

INSERT INTO `wpd_e_submissions_actions_log` (`id`, `submission_id`, `action_name`, `action_label`, `status`, `log`, `created_at_gmt`, `updated_at_gmt`, `created_at`, `updated_at`) VALUES
(1, 1, 'email', 'Email', 'success', NULL, '2026-04-07 07:16:36', '2026-04-07 07:16:36', '2026-04-07 07:16:36', '2026-04-07 07:16:36');

-- --------------------------------------------------------

--
-- Table structure for table `wpd_e_submissions_values`
--

CREATE TABLE `wpd_e_submissions_values` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `submission_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `key` varchar(60) DEFAULT NULL,
  `value` longtext DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpd_e_submissions_values`
--

INSERT INTO `wpd_e_submissions_values` (`id`, `submission_id`, `key`, `value`) VALUES
(1, 1, 'name', 'tghb fkgb'),
(2, 1, 'field_9f0a1ef', 'tghb fkgb'),
(3, 1, 'email', 'Test@gmail.com'),
(4, 1, 'field_b9e0909', '2026-04-13'),
(5, 1, 'field_27bf4e1', '01738441515'),
(6, 1, 'field_2ad7288', 'tamal'),
(7, 1, 'message', 'hello'),
(8, 1, 'field_adedc74', 'BC Perio Vancouver office');

-- --------------------------------------------------------

--
-- Table structure for table `wpd_links`
--

CREATE TABLE `wpd_links` (
  `link_id` bigint(20) UNSIGNED NOT NULL,
  `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 ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpd_options`
--

CREATE TABLE `wpd_options` (
  `option_id` bigint(20) UNSIGNED NOT NULL,
  `option_name` varchar(191) NOT NULL DEFAULT '',
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL DEFAULT 'yes'
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpd_options`
--

INSERT INTO `wpd_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'cron', 'a:13:{i:1775574311;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:1775588718;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:1775592309;a:1:{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;}}}i:1775594109;a:1:{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;}}}i:1775595909;a:1:{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:1775631911;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:1775631918;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1775631919;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1775631954;a:1:{s:28:\"elementor/tracker/send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1775657305;a:0:{}i:1775977548;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:1776063911;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}', 'on'),
(2, 'siteurl', 'https://mrarif.me/drsarah', 'on'),
(3, 'home', 'https://mrarif.me/drsarah', 'on'),
(4, 'blogname', 'Dr. Sarah', 'on'),
(5, 'blogdescription', 'Welcome', 'on'),
(6, 'users_can_register', '0', 'on'),
(7, 'admin_email', 'arifwebsols@gmail.com', 'on'),
(8, 'start_of_week', '1', 'on'),
(9, 'use_balanceTags', '0', 'on'),
(10, 'use_smilies', '1', 'on'),
(11, 'require_name_email', '1', 'on'),
(12, 'comments_notify', '1', 'on'),
(13, 'posts_per_rss', '10', 'on'),
(14, 'rss_use_excerpt', '0', 'on'),
(15, 'mailserver_url', 'mail.example.com', 'on'),
(16, 'mailserver_login', 'login@example.com', 'on'),
(17, 'mailserver_pass', '', 'on'),
(18, 'mailserver_port', '110', 'on'),
(19, 'default_category', '1', 'on'),
(20, 'default_comment_status', 'open', 'on'),
(21, 'default_ping_status', 'open', 'on'),
(22, 'default_pingback_flag', '1', 'on'),
(23, 'posts_per_page', '10', 'on'),
(24, 'date_format', 'F j, Y', 'on'),
(25, 'time_format', 'g:i a', 'on'),
(26, 'links_updated_date_format', 'F j, Y g:i a', 'on'),
(27, 'comment_moderation', '0', 'on'),
(28, 'moderation_notify', '1', 'on'),
(29, 'permalink_structure', '/%postname%/', 'on'),
(30, 'rewrite_rules', 'a:126:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:46:\"e-floating-buttons/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:56:\"e-floating-buttons/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:76:\"e-floating-buttons/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"e-floating-buttons/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"e-floating-buttons/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:52:\"e-floating-buttons/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"e-floating-buttons/([^/]+)/embed/?$\";s:51:\"index.php?e-floating-buttons=$matches[1]&embed=true\";s:39:\"e-floating-buttons/([^/]+)/trackback/?$\";s:45:\"index.php?e-floating-buttons=$matches[1]&tb=1\";s:47:\"e-floating-buttons/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?e-floating-buttons=$matches[1]&paged=$matches[2]\";s:54:\"e-floating-buttons/([^/]+)/comment-page-([0-9]{1,})/?$\";s:58:\"index.php?e-floating-buttons=$matches[1]&cpage=$matches[2]\";s:43:\"e-floating-buttons/([^/]+)(?:/([0-9]+))?/?$\";s:57:\"index.php?e-floating-buttons=$matches[1]&page=$matches[2]\";s:35:\"e-floating-buttons/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"e-floating-buttons/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"e-floating-buttons/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"e-floating-buttons/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"e-floating-buttons/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"e-floating-buttons/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:47:\"elementor_component/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"elementor_component/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"elementor_component/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"elementor_component/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"elementor_component/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"elementor_component/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:36:\"elementor_component/([^/]+)/embed/?$\";s:52:\"index.php?elementor_component=$matches[1]&embed=true\";s:40:\"elementor_component/([^/]+)/trackback/?$\";s:46:\"index.php?elementor_component=$matches[1]&tb=1\";s:48:\"elementor_component/([^/]+)/page/?([0-9]{1,})/?$\";s:59:\"index.php?elementor_component=$matches[1]&paged=$matches[2]\";s:55:\"elementor_component/([^/]+)/comment-page-([0-9]{1,})/?$\";s:59:\"index.php?elementor_component=$matches[1]&cpage=$matches[2]\";s:44:\"elementor_component/([^/]+)(?:/([0-9]+))?/?$\";s:58:\"index.php?elementor_component=$matches[1]&page=$matches[2]\";s:36:\"elementor_component/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"elementor_component/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"elementor_component/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"elementor_component/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"elementor_component/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"elementor_component/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=10&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\";}', 'on'),
(31, 'hack_file', '0', 'on'),
(32, 'blog_charset', 'UTF-8', 'on'),
(33, 'moderation_keys', '', 'off'),
(34, 'active_plugins', 'a:4:{i:0;s:31:\"backup-backup/backup-backup.php\";i:1;s:31:\"elementor-pro/elementor-pro.php\";i:2;s:23:\"elementor/elementor.php\";i:3;s:41:\"powerpack-elements/powerpack-elements.php\";}', 'on'),
(35, 'category_base', '', 'on'),
(36, 'ping_sites', 'https://rpc.pingomatic.com/', 'on'),
(37, 'comment_max_links', '2', 'on'),
(38, 'gmt_offset', '0', 'on'),
(39, 'default_email_category', '1', 'on'),
(40, 'recently_edited', 'a:3:{i:0;s:74:\"/home/mrarqpph/public_html/drsarah/wp-content/themes/astra-child/style.css\";i:1;s:78:\"/home/mrarqpph/public_html/drsarah/wp-content/themes/astra-child/functions.php\";i:3;s:0:\"\";}', 'off'),
(41, 'template', 'astra', 'on'),
(42, 'stylesheet', 'astra-child', 'on'),
(43, 'comment_registration', '0', 'on'),
(44, 'html_type', 'text/html', 'on'),
(45, 'use_trackback', '0', 'on'),
(46, 'default_role', 'subscriber', 'on'),
(47, 'db_version', '60717', 'on'),
(48, 'uploads_use_yearmonth_folders', '1', 'on'),
(49, 'upload_path', '', 'on'),
(50, 'blog_public', '1', 'on'),
(51, 'default_link_category', '2', 'on'),
(52, 'show_on_front', 'page', 'on'),
(53, 'tag_base', '', 'on'),
(54, 'show_avatars', '1', 'on'),
(55, 'avatar_rating', 'G', 'on'),
(56, 'upload_url_path', '', 'on'),
(57, 'thumbnail_size_w', '150', 'on'),
(58, 'thumbnail_size_h', '150', 'on'),
(59, 'thumbnail_crop', '1', 'on'),
(60, 'medium_size_w', '300', 'on'),
(61, 'medium_size_h', '300', 'on'),
(62, 'avatar_default', 'mystery', 'on'),
(63, 'large_size_w', '1024', 'on'),
(64, 'large_size_h', '1024', 'on'),
(65, 'image_default_link_type', 'none', 'on'),
(66, 'image_default_size', '', 'on'),
(67, 'image_default_align', '', 'on'),
(68, 'close_comments_for_old_posts', '0', 'on'),
(69, 'close_comments_days_old', '14', 'on'),
(70, 'thread_comments', '1', 'on'),
(71, 'thread_comments_depth', '5', 'on'),
(72, 'page_comments', '0', 'on'),
(73, 'comments_per_page', '50', 'on'),
(74, 'default_comments_page', 'newest', 'on'),
(75, 'comment_order', 'asc', 'on'),
(76, 'sticky_posts', 'a:0:{}', 'on'),
(77, 'widget_categories', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'auto'),
(78, 'widget_text', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'auto'),
(79, 'widget_rss', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'auto'),
(80, 'uninstall_plugins', 'a:3:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:35:\"litespeed-cache/litespeed-cache.php\";s:47:\"LiteSpeed\\Activation::uninstall_litespeed_cache\";s:31:\"backup-backup/backup-backup.php\";a:2:{i:0;s:15:\"Account\\Account\";i:1;s:25:\"onUninstallPluginListener\";}}', 'off'),
(81, 'timezone_string', '', 'on'),
(82, 'page_for_posts', '0', 'on'),
(83, 'page_on_front', '10', 'on'),
(84, 'default_post_format', '0', 'on'),
(85, 'link_manager_enabled', '0', 'on'),
(86, 'finished_splitting_shared_terms', '1', 'on'),
(87, 'site_icon', '272', 'on'),
(88, 'medium_large_size_w', '768', 'on'),
(89, 'medium_large_size_h', '0', 'on'),
(90, 'wp_page_for_privacy_policy', '3', 'on'),
(91, 'show_comments_cookies_opt_in', '1', 'on'),
(92, 'admin_email_lifespan', '1790924709', 'on'),
(93, 'disallowed_keys', '', 'off'),
(94, 'comment_previously_approved', '1', 'on'),
(95, 'auto_plugin_theme_update_emails', 'a:0:{}', 'off'),
(96, 'auto_update_core_dev', 'enabled', 'on'),
(97, 'auto_update_core_minor', 'enabled', 'on'),
(98, 'auto_update_core_major', 'enabled', 'on'),
(99, 'wp_force_deactivated_plugins', 'a:0:{}', 'on'),
(100, 'wp_attachment_pages_enabled', '0', 'on'),
(101, 'initial_db_version', '60421', 'on'),
(102, 'wpd_user_roles', 'a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:73:{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:42:\"elementor_atomic_widgets_access_styles_tab\";b:1;s:45:\"elementor_atomic_widgets_edit_local_css_class\";b:1;s:37:\"elementor_global_classes_update_class\";b:1;s:37:\"elementor_global_classes_remove_class\";b:1;s:36:\"elementor_global_classes_apply_class\";b:1;s:26:\"create_notes_elementor-pro\";b:1;s:24:\"edit_notes_elementor-pro\";b:1;s:26:\"delete_notes_elementor-pro\";b:1;s:24:\"read_notes_elementor-pro\";b:1;s:31:\"edit_others_notes_elementor-pro\";b:1;s:33:\"delete_others_notes_elementor-pro\";b:1;s:39:\"read_others_private_notes_elementor-pro\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:38:{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:42:\"elementor_atomic_widgets_access_styles_tab\";b:1;s:45:\"elementor_atomic_widgets_edit_local_css_class\";b:1;s:37:\"elementor_global_classes_remove_class\";b:1;s:36:\"elementor_global_classes_apply_class\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:14:{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:42:\"elementor_atomic_widgets_access_styles_tab\";b:1;s:45:\"elementor_atomic_widgets_edit_local_css_class\";b:1;s:37:\"elementor_global_classes_remove_class\";b:1;s:36:\"elementor_global_classes_apply_class\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:9:{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:42:\"elementor_atomic_widgets_access_styles_tab\";b:1;s:45:\"elementor_atomic_widgets_edit_local_css_class\";b:1;s:37:\"elementor_global_classes_remove_class\";b:1;s:36:\"elementor_global_classes_apply_class\";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;}}}', 'on'),
(103, 'fresh_site', '0', 'off'),
(104, 'user_count', '1', 'off'),
(105, '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;}', 'auto'),
(106, 'sidebars_widgets', 'a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";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:15:\"footer-widget-1\";a:0:{}s:15:\"footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-1\";a:0:{}s:24:\"advanced-footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-3\";a:0:{}s:24:\"advanced-footer-widget-4\";a:0:{}s:13:\"array_version\";i:3;}', 'auto'),
(107, 'widget_pages', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(108, 'widget_calendar', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(109, 'widget_archives', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(110, 'widget_media_audio', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(111, 'widget_media_image', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(112, 'widget_media_gallery', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(113, 'widget_media_video', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(114, 'widget_meta', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(115, 'widget_search', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(116, 'widget_recent-posts', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(117, 'widget_recent-comments', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(118, 'widget_tag_cloud', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(119, 'widget_nav_menu', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(120, 'widget_custom_html', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(121, '_transient_wp_core_block_css_files', 'a:2:{s:7:\"version\";s:5:\"6.8.2\";s:5:\"files\";a:536:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:21:\"button/editor-rtl.css\";i:29;s:25:\"button/editor-rtl.min.css\";i:30;s:17:\"button/editor.css\";i:31;s:21:\"button/editor.min.css\";i:32;s:20:\"button/style-rtl.css\";i:33;s:24:\"button/style-rtl.min.css\";i:34;s:16:\"button/style.css\";i:35;s:20:\"button/style.min.css\";i:36;s:22:\"buttons/editor-rtl.css\";i:37;s:26:\"buttons/editor-rtl.min.css\";i:38;s:18:\"buttons/editor.css\";i:39;s:22:\"buttons/editor.min.css\";i:40;s:21:\"buttons/style-rtl.css\";i:41;s:25:\"buttons/style-rtl.min.css\";i:42;s:17:\"buttons/style.css\";i:43;s:21:\"buttons/style.min.css\";i:44;s:22:\"calendar/style-rtl.css\";i:45;s:26:\"calendar/style-rtl.min.css\";i:46;s:18:\"calendar/style.css\";i:47;s:22:\"calendar/style.min.css\";i:48;s:25:\"categories/editor-rtl.css\";i:49;s:29:\"categories/editor-rtl.min.css\";i:50;s:21:\"categories/editor.css\";i:51;s:25:\"categories/editor.min.css\";i:52;s:24:\"categories/style-rtl.css\";i:53;s:28:\"categories/style-rtl.min.css\";i:54;s:20:\"categories/style.css\";i:55;s:24:\"categories/style.min.css\";i:56;s:19:\"code/editor-rtl.css\";i:57;s:23:\"code/editor-rtl.min.css\";i:58;s:15:\"code/editor.css\";i:59;s:19:\"code/editor.min.css\";i:60;s:18:\"code/style-rtl.css\";i:61;s:22:\"code/style-rtl.min.css\";i:62;s:14:\"code/style.css\";i:63;s:18:\"code/style.min.css\";i:64;s:18:\"code/theme-rtl.css\";i:65;s:22:\"code/theme-rtl.min.css\";i:66;s:14:\"code/theme.css\";i:67;s:18:\"code/theme.min.css\";i:68;s:22:\"columns/editor-rtl.css\";i:69;s:26:\"columns/editor-rtl.min.css\";i:70;s:18:\"columns/editor.css\";i:71;s:22:\"columns/editor.min.css\";i:72;s:21:\"columns/style-rtl.css\";i:73;s:25:\"columns/style-rtl.min.css\";i:74;s:17:\"columns/style.css\";i:75;s:21:\"columns/style.min.css\";i:76;s:33:\"comment-author-name/style-rtl.css\";i:77;s:37:\"comment-author-name/style-rtl.min.css\";i:78;s:29:\"comment-author-name/style.css\";i:79;s:33:\"comment-author-name/style.min.css\";i:80;s:29:\"comment-content/style-rtl.css\";i:81;s:33:\"comment-content/style-rtl.min.css\";i:82;s:25:\"comment-content/style.css\";i:83;s:29:\"comment-content/style.min.css\";i:84;s:26:\"comment-date/style-rtl.css\";i:85;s:30:\"comment-date/style-rtl.min.css\";i:86;s:22:\"comment-date/style.css\";i:87;s:26:\"comment-date/style.min.css\";i:88;s:31:\"comment-edit-link/style-rtl.css\";i:89;s:35:\"comment-edit-link/style-rtl.min.css\";i:90;s:27:\"comment-edit-link/style.css\";i:91;s:31:\"comment-edit-link/style.min.css\";i:92;s:32:\"comment-reply-link/style-rtl.css\";i:93;s:36:\"comment-reply-link/style-rtl.min.css\";i:94;s:28:\"comment-reply-link/style.css\";i:95;s:32:\"comment-reply-link/style.min.css\";i:96;s:30:\"comment-template/style-rtl.css\";i:97;s:34:\"comment-template/style-rtl.min.css\";i:98;s:26:\"comment-template/style.css\";i:99;s:30:\"comment-template/style.min.css\";i:100;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:101;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:102;s:38:\"comments-pagination-numbers/editor.css\";i:103;s:42:\"comments-pagination-numbers/editor.min.css\";i:104;s:34:\"comments-pagination/editor-rtl.css\";i:105;s:38:\"comments-pagination/editor-rtl.min.css\";i:106;s:30:\"comments-pagination/editor.css\";i:107;s:34:\"comments-pagination/editor.min.css\";i:108;s:33:\"comments-pagination/style-rtl.css\";i:109;s:37:\"comments-pagination/style-rtl.min.css\";i:110;s:29:\"comments-pagination/style.css\";i:111;s:33:\"comments-pagination/style.min.css\";i:112;s:29:\"comments-title/editor-rtl.css\";i:113;s:33:\"comments-title/editor-rtl.min.css\";i:114;s:25:\"comments-title/editor.css\";i:115;s:29:\"comments-title/editor.min.css\";i:116;s:23:\"comments/editor-rtl.css\";i:117;s:27:\"comments/editor-rtl.min.css\";i:118;s:19:\"comments/editor.css\";i:119;s:23:\"comments/editor.min.css\";i:120;s:22:\"comments/style-rtl.css\";i:121;s:26:\"comments/style-rtl.min.css\";i:122;s:18:\"comments/style.css\";i:123;s:22:\"comments/style.min.css\";i:124;s:20:\"cover/editor-rtl.css\";i:125;s:24:\"cover/editor-rtl.min.css\";i:126;s:16:\"cover/editor.css\";i:127;s:20:\"cover/editor.min.css\";i:128;s:19:\"cover/style-rtl.css\";i:129;s:23:\"cover/style-rtl.min.css\";i:130;s:15:\"cover/style.css\";i:131;s:19:\"cover/style.min.css\";i:132;s:22:\"details/editor-rtl.css\";i:133;s:26:\"details/editor-rtl.min.css\";i:134;s:18:\"details/editor.css\";i:135;s:22:\"details/editor.min.css\";i:136;s:21:\"details/style-rtl.css\";i:137;s:25:\"details/style-rtl.min.css\";i:138;s:17:\"details/style.css\";i:139;s:21:\"details/style.min.css\";i:140;s:20:\"embed/editor-rtl.css\";i:141;s:24:\"embed/editor-rtl.min.css\";i:142;s:16:\"embed/editor.css\";i:143;s:20:\"embed/editor.min.css\";i:144;s:19:\"embed/style-rtl.css\";i:145;s:23:\"embed/style-rtl.min.css\";i:146;s:15:\"embed/style.css\";i:147;s:19:\"embed/style.min.css\";i:148;s:19:\"embed/theme-rtl.css\";i:149;s:23:\"embed/theme-rtl.min.css\";i:150;s:15:\"embed/theme.css\";i:151;s:19:\"embed/theme.min.css\";i:152;s:19:\"file/editor-rtl.css\";i:153;s:23:\"file/editor-rtl.min.css\";i:154;s:15:\"file/editor.css\";i:155;s:19:\"file/editor.min.css\";i:156;s:18:\"file/style-rtl.css\";i:157;s:22:\"file/style-rtl.min.css\";i:158;s:14:\"file/style.css\";i:159;s:18:\"file/style.min.css\";i:160;s:23:\"footnotes/style-rtl.css\";i:161;s:27:\"footnotes/style-rtl.min.css\";i:162;s:19:\"footnotes/style.css\";i:163;s:23:\"footnotes/style.min.css\";i:164;s:23:\"freeform/editor-rtl.css\";i:165;s:27:\"freeform/editor-rtl.min.css\";i:166;s:19:\"freeform/editor.css\";i:167;s:23:\"freeform/editor.min.css\";i:168;s:22:\"gallery/editor-rtl.css\";i:169;s:26:\"gallery/editor-rtl.min.css\";i:170;s:18:\"gallery/editor.css\";i:171;s:22:\"gallery/editor.min.css\";i:172;s:21:\"gallery/style-rtl.css\";i:173;s:25:\"gallery/style-rtl.min.css\";i:174;s:17:\"gallery/style.css\";i:175;s:21:\"gallery/style.min.css\";i:176;s:21:\"gallery/theme-rtl.css\";i:177;s:25:\"gallery/theme-rtl.min.css\";i:178;s:17:\"gallery/theme.css\";i:179;s:21:\"gallery/theme.min.css\";i:180;s:20:\"group/editor-rtl.css\";i:181;s:24:\"group/editor-rtl.min.css\";i:182;s:16:\"group/editor.css\";i:183;s:20:\"group/editor.min.css\";i:184;s:19:\"group/style-rtl.css\";i:185;s:23:\"group/style-rtl.min.css\";i:186;s:15:\"group/style.css\";i:187;s:19:\"group/style.min.css\";i:188;s:19:\"group/theme-rtl.css\";i:189;s:23:\"group/theme-rtl.min.css\";i:190;s:15:\"group/theme.css\";i:191;s:19:\"group/theme.min.css\";i:192;s:21:\"heading/style-rtl.css\";i:193;s:25:\"heading/style-rtl.min.css\";i:194;s:17:\"heading/style.css\";i:195;s:21:\"heading/style.min.css\";i:196;s:19:\"html/editor-rtl.css\";i:197;s:23:\"html/editor-rtl.min.css\";i:198;s:15:\"html/editor.css\";i:199;s:19:\"html/editor.min.css\";i:200;s:20:\"image/editor-rtl.css\";i:201;s:24:\"image/editor-rtl.min.css\";i:202;s:16:\"image/editor.css\";i:203;s:20:\"image/editor.min.css\";i:204;s:19:\"image/style-rtl.css\";i:205;s:23:\"image/style-rtl.min.css\";i:206;s:15:\"image/style.css\";i:207;s:19:\"image/style.min.css\";i:208;s:19:\"image/theme-rtl.css\";i:209;s:23:\"image/theme-rtl.min.css\";i:210;s:15:\"image/theme.css\";i:211;s:19:\"image/theme.min.css\";i:212;s:29:\"latest-comments/style-rtl.css\";i:213;s:33:\"latest-comments/style-rtl.min.css\";i:214;s:25:\"latest-comments/style.css\";i:215;s:29:\"latest-comments/style.min.css\";i:216;s:27:\"latest-posts/editor-rtl.css\";i:217;s:31:\"latest-posts/editor-rtl.min.css\";i:218;s:23:\"latest-posts/editor.css\";i:219;s:27:\"latest-posts/editor.min.css\";i:220;s:26:\"latest-posts/style-rtl.css\";i:221;s:30:\"latest-posts/style-rtl.min.css\";i:222;s:22:\"latest-posts/style.css\";i:223;s:26:\"latest-posts/style.min.css\";i:224;s:18:\"list/style-rtl.css\";i:225;s:22:\"list/style-rtl.min.css\";i:226;s:14:\"list/style.css\";i:227;s:18:\"list/style.min.css\";i:228;s:22:\"loginout/style-rtl.css\";i:229;s:26:\"loginout/style-rtl.min.css\";i:230;s:18:\"loginout/style.css\";i:231;s:22:\"loginout/style.min.css\";i:232;s:25:\"media-text/editor-rtl.css\";i:233;s:29:\"media-text/editor-rtl.min.css\";i:234;s:21:\"media-text/editor.css\";i:235;s:25:\"media-text/editor.min.css\";i:236;s:24:\"media-text/style-rtl.css\";i:237;s:28:\"media-text/style-rtl.min.css\";i:238;s:20:\"media-text/style.css\";i:239;s:24:\"media-text/style.min.css\";i:240;s:19:\"more/editor-rtl.css\";i:241;s:23:\"more/editor-rtl.min.css\";i:242;s:15:\"more/editor.css\";i:243;s:19:\"more/editor.min.css\";i:244;s:30:\"navigation-link/editor-rtl.css\";i:245;s:34:\"navigation-link/editor-rtl.min.css\";i:246;s:26:\"navigation-link/editor.css\";i:247;s:30:\"navigation-link/editor.min.css\";i:248;s:29:\"navigation-link/style-rtl.css\";i:249;s:33:\"navigation-link/style-rtl.min.css\";i:250;s:25:\"navigation-link/style.css\";i:251;s:29:\"navigation-link/style.min.css\";i:252;s:33:\"navigation-submenu/editor-rtl.css\";i:253;s:37:\"navigation-submenu/editor-rtl.min.css\";i:254;s:29:\"navigation-submenu/editor.css\";i:255;s:33:\"navigation-submenu/editor.min.css\";i:256;s:25:\"navigation/editor-rtl.css\";i:257;s:29:\"navigation/editor-rtl.min.css\";i:258;s:21:\"navigation/editor.css\";i:259;s:25:\"navigation/editor.min.css\";i:260;s:24:\"navigation/style-rtl.css\";i:261;s:28:\"navigation/style-rtl.min.css\";i:262;s:20:\"navigation/style.css\";i:263;s:24:\"navigation/style.min.css\";i:264;s:23:\"nextpage/editor-rtl.css\";i:265;s:27:\"nextpage/editor-rtl.min.css\";i:266;s:19:\"nextpage/editor.css\";i:267;s:23:\"nextpage/editor.min.css\";i:268;s:24:\"page-list/editor-rtl.css\";i:269;s:28:\"page-list/editor-rtl.min.css\";i:270;s:20:\"page-list/editor.css\";i:271;s:24:\"page-list/editor.min.css\";i:272;s:23:\"page-list/style-rtl.css\";i:273;s:27:\"page-list/style-rtl.min.css\";i:274;s:19:\"page-list/style.css\";i:275;s:23:\"page-list/style.min.css\";i:276;s:24:\"paragraph/editor-rtl.css\";i:277;s:28:\"paragraph/editor-rtl.min.css\";i:278;s:20:\"paragraph/editor.css\";i:279;s:24:\"paragraph/editor.min.css\";i:280;s:23:\"paragraph/style-rtl.css\";i:281;s:27:\"paragraph/style-rtl.min.css\";i:282;s:19:\"paragraph/style.css\";i:283;s:23:\"paragraph/style.min.css\";i:284;s:35:\"post-author-biography/style-rtl.css\";i:285;s:39:\"post-author-biography/style-rtl.min.css\";i:286;s:31:\"post-author-biography/style.css\";i:287;s:35:\"post-author-biography/style.min.css\";i:288;s:30:\"post-author-name/style-rtl.css\";i:289;s:34:\"post-author-name/style-rtl.min.css\";i:290;s:26:\"post-author-name/style.css\";i:291;s:30:\"post-author-name/style.min.css\";i:292;s:26:\"post-author/editor-rtl.css\";i:293;s:30:\"post-author/editor-rtl.min.css\";i:294;s:22:\"post-author/editor.css\";i:295;s:26:\"post-author/editor.min.css\";i:296;s:25:\"post-author/style-rtl.css\";i:297;s:29:\"post-author/style-rtl.min.css\";i:298;s:21:\"post-author/style.css\";i:299;s:25:\"post-author/style.min.css\";i:300;s:33:\"post-comments-form/editor-rtl.css\";i:301;s:37:\"post-comments-form/editor-rtl.min.css\";i:302;s:29:\"post-comments-form/editor.css\";i:303;s:33:\"post-comments-form/editor.min.css\";i:304;s:32:\"post-comments-form/style-rtl.css\";i:305;s:36:\"post-comments-form/style-rtl.min.css\";i:306;s:28:\"post-comments-form/style.css\";i:307;s:32:\"post-comments-form/style.min.css\";i:308;s:26:\"post-content/style-rtl.css\";i:309;s:30:\"post-content/style-rtl.min.css\";i:310;s:22:\"post-content/style.css\";i:311;s:26:\"post-content/style.min.css\";i:312;s:23:\"post-date/style-rtl.css\";i:313;s:27:\"post-date/style-rtl.min.css\";i:314;s:19:\"post-date/style.css\";i:315;s:23:\"post-date/style.min.css\";i:316;s:27:\"post-excerpt/editor-rtl.css\";i:317;s:31:\"post-excerpt/editor-rtl.min.css\";i:318;s:23:\"post-excerpt/editor.css\";i:319;s:27:\"post-excerpt/editor.min.css\";i:320;s:26:\"post-excerpt/style-rtl.css\";i:321;s:30:\"post-excerpt/style-rtl.min.css\";i:322;s:22:\"post-excerpt/style.css\";i:323;s:26:\"post-excerpt/style.min.css\";i:324;s:34:\"post-featured-image/editor-rtl.css\";i:325;s:38:\"post-featured-image/editor-rtl.min.css\";i:326;s:30:\"post-featured-image/editor.css\";i:327;s:34:\"post-featured-image/editor.min.css\";i:328;s:33:\"post-featured-image/style-rtl.css\";i:329;s:37:\"post-featured-image/style-rtl.min.css\";i:330;s:29:\"post-featured-image/style.css\";i:331;s:33:\"post-featured-image/style.min.css\";i:332;s:34:\"post-navigation-link/style-rtl.css\";i:333;s:38:\"post-navigation-link/style-rtl.min.css\";i:334;s:30:\"post-navigation-link/style.css\";i:335;s:34:\"post-navigation-link/style.min.css\";i:336;s:27:\"post-template/style-rtl.css\";i:337;s:31:\"post-template/style-rtl.min.css\";i:338;s:23:\"post-template/style.css\";i:339;s:27:\"post-template/style.min.css\";i:340;s:24:\"post-terms/style-rtl.css\";i:341;s:28:\"post-terms/style-rtl.min.css\";i:342;s:20:\"post-terms/style.css\";i:343;s:24:\"post-terms/style.min.css\";i:344;s:24:\"post-title/style-rtl.css\";i:345;s:28:\"post-title/style-rtl.min.css\";i:346;s:20:\"post-title/style.css\";i:347;s:24:\"post-title/style.min.css\";i:348;s:26:\"preformatted/style-rtl.css\";i:349;s:30:\"preformatted/style-rtl.min.css\";i:350;s:22:\"preformatted/style.css\";i:351;s:26:\"preformatted/style.min.css\";i:352;s:24:\"pullquote/editor-rtl.css\";i:353;s:28:\"pullquote/editor-rtl.min.css\";i:354;s:20:\"pullquote/editor.css\";i:355;s:24:\"pullquote/editor.min.css\";i:356;s:23:\"pullquote/style-rtl.css\";i:357;s:27:\"pullquote/style-rtl.min.css\";i:358;s:19:\"pullquote/style.css\";i:359;s:23:\"pullquote/style.min.css\";i:360;s:23:\"pullquote/theme-rtl.css\";i:361;s:27:\"pullquote/theme-rtl.min.css\";i:362;s:19:\"pullquote/theme.css\";i:363;s:23:\"pullquote/theme.min.css\";i:364;s:39:\"query-pagination-numbers/editor-rtl.css\";i:365;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:366;s:35:\"query-pagination-numbers/editor.css\";i:367;s:39:\"query-pagination-numbers/editor.min.css\";i:368;s:31:\"query-pagination/editor-rtl.css\";i:369;s:35:\"query-pagination/editor-rtl.min.css\";i:370;s:27:\"query-pagination/editor.css\";i:371;s:31:\"query-pagination/editor.min.css\";i:372;s:30:\"query-pagination/style-rtl.css\";i:373;s:34:\"query-pagination/style-rtl.min.css\";i:374;s:26:\"query-pagination/style.css\";i:375;s:30:\"query-pagination/style.min.css\";i:376;s:25:\"query-title/style-rtl.css\";i:377;s:29:\"query-title/style-rtl.min.css\";i:378;s:21:\"query-title/style.css\";i:379;s:25:\"query-title/style.min.css\";i:380;s:25:\"query-total/style-rtl.css\";i:381;s:29:\"query-total/style-rtl.min.css\";i:382;s:21:\"query-total/style.css\";i:383;s:25:\"query-total/style.min.css\";i:384;s:20:\"query/editor-rtl.css\";i:385;s:24:\"query/editor-rtl.min.css\";i:386;s:16:\"query/editor.css\";i:387;s:20:\"query/editor.min.css\";i:388;s:19:\"quote/style-rtl.css\";i:389;s:23:\"quote/style-rtl.min.css\";i:390;s:15:\"quote/style.css\";i:391;s:19:\"quote/style.min.css\";i:392;s:19:\"quote/theme-rtl.css\";i:393;s:23:\"quote/theme-rtl.min.css\";i:394;s:15:\"quote/theme.css\";i:395;s:19:\"quote/theme.min.css\";i:396;s:23:\"read-more/style-rtl.css\";i:397;s:27:\"read-more/style-rtl.min.css\";i:398;s:19:\"read-more/style.css\";i:399;s:23:\"read-more/style.min.css\";i:400;s:18:\"rss/editor-rtl.css\";i:401;s:22:\"rss/editor-rtl.min.css\";i:402;s:14:\"rss/editor.css\";i:403;s:18:\"rss/editor.min.css\";i:404;s:17:\"rss/style-rtl.css\";i:405;s:21:\"rss/style-rtl.min.css\";i:406;s:13:\"rss/style.css\";i:407;s:17:\"rss/style.min.css\";i:408;s:21:\"search/editor-rtl.css\";i:409;s:25:\"search/editor-rtl.min.css\";i:410;s:17:\"search/editor.css\";i:411;s:21:\"search/editor.min.css\";i:412;s:20:\"search/style-rtl.css\";i:413;s:24:\"search/style-rtl.min.css\";i:414;s:16:\"search/style.css\";i:415;s:20:\"search/style.min.css\";i:416;s:20:\"search/theme-rtl.css\";i:417;s:24:\"search/theme-rtl.min.css\";i:418;s:16:\"search/theme.css\";i:419;s:20:\"search/theme.min.css\";i:420;s:24:\"separator/editor-rtl.css\";i:421;s:28:\"separator/editor-rtl.min.css\";i:422;s:20:\"separator/editor.css\";i:423;s:24:\"separator/editor.min.css\";i:424;s:23:\"separator/style-rtl.css\";i:425;s:27:\"separator/style-rtl.min.css\";i:426;s:19:\"separator/style.css\";i:427;s:23:\"separator/style.min.css\";i:428;s:23:\"separator/theme-rtl.css\";i:429;s:27:\"separator/theme-rtl.min.css\";i:430;s:19:\"separator/theme.css\";i:431;s:23:\"separator/theme.min.css\";i:432;s:24:\"shortcode/editor-rtl.css\";i:433;s:28:\"shortcode/editor-rtl.min.css\";i:434;s:20:\"shortcode/editor.css\";i:435;s:24:\"shortcode/editor.min.css\";i:436;s:24:\"site-logo/editor-rtl.css\";i:437;s:28:\"site-logo/editor-rtl.min.css\";i:438;s:20:\"site-logo/editor.css\";i:439;s:24:\"site-logo/editor.min.css\";i:440;s:23:\"site-logo/style-rtl.css\";i:441;s:27:\"site-logo/style-rtl.min.css\";i:442;s:19:\"site-logo/style.css\";i:443;s:23:\"site-logo/style.min.css\";i:444;s:27:\"site-tagline/editor-rtl.css\";i:445;s:31:\"site-tagline/editor-rtl.min.css\";i:446;s:23:\"site-tagline/editor.css\";i:447;s:27:\"site-tagline/editor.min.css\";i:448;s:26:\"site-tagline/style-rtl.css\";i:449;s:30:\"site-tagline/style-rtl.min.css\";i:450;s:22:\"site-tagline/style.css\";i:451;s:26:\"site-tagline/style.min.css\";i:452;s:25:\"site-title/editor-rtl.css\";i:453;s:29:\"site-title/editor-rtl.min.css\";i:454;s:21:\"site-title/editor.css\";i:455;s:25:\"site-title/editor.min.css\";i:456;s:24:\"site-title/style-rtl.css\";i:457;s:28:\"site-title/style-rtl.min.css\";i:458;s:20:\"site-title/style.css\";i:459;s:24:\"site-title/style.min.css\";i:460;s:26:\"social-link/editor-rtl.css\";i:461;s:30:\"social-link/editor-rtl.min.css\";i:462;s:22:\"social-link/editor.css\";i:463;s:26:\"social-link/editor.min.css\";i:464;s:27:\"social-links/editor-rtl.css\";i:465;s:31:\"social-links/editor-rtl.min.css\";i:466;s:23:\"social-links/editor.css\";i:467;s:27:\"social-links/editor.min.css\";i:468;s:26:\"social-links/style-rtl.css\";i:469;s:30:\"social-links/style-rtl.min.css\";i:470;s:22:\"social-links/style.css\";i:471;s:26:\"social-links/style.min.css\";i:472;s:21:\"spacer/editor-rtl.css\";i:473;s:25:\"spacer/editor-rtl.min.css\";i:474;s:17:\"spacer/editor.css\";i:475;s:21:\"spacer/editor.min.css\";i:476;s:20:\"spacer/style-rtl.css\";i:477;s:24:\"spacer/style-rtl.min.css\";i:478;s:16:\"spacer/style.css\";i:479;s:20:\"spacer/style.min.css\";i:480;s:20:\"table/editor-rtl.css\";i:481;s:24:\"table/editor-rtl.min.css\";i:482;s:16:\"table/editor.css\";i:483;s:20:\"table/editor.min.css\";i:484;s:19:\"table/style-rtl.css\";i:485;s:23:\"table/style-rtl.min.css\";i:486;s:15:\"table/style.css\";i:487;s:19:\"table/style.min.css\";i:488;s:19:\"table/theme-rtl.css\";i:489;s:23:\"table/theme-rtl.min.css\";i:490;s:15:\"table/theme.css\";i:491;s:19:\"table/theme.min.css\";i:492;s:24:\"tag-cloud/editor-rtl.css\";i:493;s:28:\"tag-cloud/editor-rtl.min.css\";i:494;s:20:\"tag-cloud/editor.css\";i:495;s:24:\"tag-cloud/editor.min.css\";i:496;s:23:\"tag-cloud/style-rtl.css\";i:497;s:27:\"tag-cloud/style-rtl.min.css\";i:498;s:19:\"tag-cloud/style.css\";i:499;s:23:\"tag-cloud/style.min.css\";i:500;s:28:\"template-part/editor-rtl.css\";i:501;s:32:\"template-part/editor-rtl.min.css\";i:502;s:24:\"template-part/editor.css\";i:503;s:28:\"template-part/editor.min.css\";i:504;s:27:\"template-part/theme-rtl.css\";i:505;s:31:\"template-part/theme-rtl.min.css\";i:506;s:23:\"template-part/theme.css\";i:507;s:27:\"template-part/theme.min.css\";i:508;s:30:\"term-description/style-rtl.css\";i:509;s:34:\"term-description/style-rtl.min.css\";i:510;s:26:\"term-description/style.css\";i:511;s:30:\"term-description/style.min.css\";i:512;s:27:\"text-columns/editor-rtl.css\";i:513;s:31:\"text-columns/editor-rtl.min.css\";i:514;s:23:\"text-columns/editor.css\";i:515;s:27:\"text-columns/editor.min.css\";i:516;s:26:\"text-columns/style-rtl.css\";i:517;s:30:\"text-columns/style-rtl.min.css\";i:518;s:22:\"text-columns/style.css\";i:519;s:26:\"text-columns/style.min.css\";i:520;s:19:\"verse/style-rtl.css\";i:521;s:23:\"verse/style-rtl.min.css\";i:522;s:15:\"verse/style.css\";i:523;s:19:\"verse/style.min.css\";i:524;s:20:\"video/editor-rtl.css\";i:525;s:24:\"video/editor-rtl.min.css\";i:526;s:16:\"video/editor.css\";i:527;s:20:\"video/editor.min.css\";i:528;s:19:\"video/style-rtl.css\";i:529;s:23:\"video/style-rtl.min.css\";i:530;s:15:\"video/style.css\";i:531;s:19:\"video/style.min.css\";i:532;s:19:\"video/theme-rtl.css\";i:533;s:23:\"video/theme-rtl.min.css\";i:534;s:15:\"video/theme.css\";i:535;s:19:\"video/theme.min.css\";}}', 'on');
INSERT INTO `wpd_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1163, '_elementor_home_screen_data', 'a:2:{s:7:\"timeout\";i:1775548220;s:5:\"value\";s:12470:\"{\"top_with_licences\":[{\"license\":[\"free\"],\"title_small\":\"Hi!\",\"title\":\"Unleash your imagination with Elementor\",\"description\":\"Start building your website with Elementor\'s no code drag & drop editor.\",\"button_create_page_title\":\"Create a Page\",\"button_watch_title\":\"Watch a guide\",\"button_watch_url\":\"https:\\/\\/www.youtube.com\\/watch?v=le72grP_Q6k&t=1s\",\"youtube_embed_id\":\"le72grP_Q6k?si=g2akyWNODL6usu6u\"},{\"license\":[\"pro\"],\"title_small\":\"Hi!\",\"title\":\"Unleash your imagination with Elementor\",\"description\":\"Now you\'ve got all the tools to start creating professional, high-performing websites - and that journey begins by creating your first page.\",\"button_create_page_title\":\"Create a Page\",\"button_watch_title\":\"Watch a guide\",\"button_watch_url\":\"https:\\/\\/www.youtube.com\\/watch?v=QdkDGrS8ZZs\",\"youtube_embed_id\":\"QdkDGrS8ZZs?si=s_VjZCQR6Fh1jgB5\"},{\"license\":[\"one\"],\"title_small\":\"Hi!\",\"title\":\"Unleash your imagination with Elementor\",\"description\":\"Now you\'ve got all the tools to start creating professional, high-performing websites - and that journey begins by creating your first page.\",\"button_create_page_title\":\"Create a Page\",\"button_watch_title\":\"Watch a guide\",\"button_watch_url\":\"https:\\/\\/www.youtube.com\\/watch?v=QdkDGrS8ZZs\",\"youtube_embed_id\":\"QdkDGrS8ZZs?si=s_VjZCQR6Fh1jgB5\"}],\"get_started\":[{\"license\":[\"free\"],\"header\":{\"title\":\"Jumpstart your web-creation\",\"description\":\"These quick actions will get your site airborne with a customized design.\"},\"repeater\":[{\"title\":\"Site Settings\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-settings.svg\"},{\"title\":\"Site Logo\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"tab_id\":\"settings-site-identity\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-logo.svg\"},{\"title\":\"Global Colors\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"tab_id\":\"global-colors\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-colors.svg\"},{\"title\":\"Global Fonts\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"tab_id\":\"global-typography\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-fonts.svg\"},{\"title\":\"Theme Builder\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor-app\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/theme-builder.svg\"},{\"title\":\"Popups\",\"title_small\":\"Customize\",\"url\":\"edit.php?post_type=elementor_library&page=popup_templates\",\"is_relative_url\":true,\"title_small_color\":\"text.tertiary\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/popups.svg\"},{\"title\":\"Custom Icons\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_icons\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-icons.svg\"},{\"title\":\"Custom Fonts\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_fonts\",\"is_relative_url\":true,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-fonts.svg\",\"title_small_color\":\"text.tertiary\"}]},{\"license\":[\"pro\"],\"header\":{\"title\":\"Jumpstart your web-creation\",\"description\":\"These quick actions will get your site airborne with a customized design.\"},\"repeater\":[{\"title\":\"Site Settings\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-settings.svg\"},{\"title\":\"Site Logo\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"tab_id\":\"settings-site-identity\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-logo.svg\"},{\"title\":\"Global Colors\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"tab_id\":\"global-colors\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-colors.svg\"},{\"title\":\"Global Fonts\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"tab_id\":\"global-typography\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-fonts.svg\"},{\"title\":\"Theme Builder\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor-app\",\"is_relative_url\":false,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/theme-builder.svg\"},{\"title\":\"Popups\",\"title_small\":\"Customize\",\"url\":\"edit.php?post_type=elementor_library&tabs_group=popup&elementor_library_type=popup\",\"is_relative_url\":true,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/popups.svg\"},{\"title\":\"Custom Icons\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_icons\",\"is_relative_url\":false,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-icons.svg\"},{\"title\":\"Custom Fonts\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_fonts\",\"is_relative_url\":true,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-fonts.svg\"}]},{\"license\":[\"one\"],\"header\":{\"title\":\"Jumpstart your web-creation\",\"description\":\"These quick actions will get your site airborne with a customized design.\"},\"repeater\":[{\"title\":\"Site Settings\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-settings.svg\"},{\"title\":\"Site Logo\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"tab_id\":\"settings-site-identity\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-logo.svg\"},{\"title\":\"Global Colors\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"tab_id\":\"global-colors\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-colors.svg\"},{\"title\":\"Global Fonts\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"tab_id\":\"global-typography\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-fonts.svg\"},{\"title\":\"Theme Builder\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor-app\",\"is_relative_url\":false,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/theme-builder.svg\"},{\"title\":\"Popups\",\"title_small\":\"Customize\",\"url\":\"edit.php?post_type=elementor_library&tabs_group=popup&elementor_library_type=popup\",\"is_relative_url\":true,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/popups.svg\"},{\"title\":\"Custom Icons\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_icons\",\"is_relative_url\":false,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-icons.svg\"},{\"title\":\"Custom Fonts\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_fonts\",\"is_relative_url\":true,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-fonts.svg\"}]}],\"add_ons\":{\"hide_section\":[\"free\",\"essential\",\"pro\",\"one\"],\"header\":{\"title\":\"Expand your design toolkit\",\"description\":\"These plugins, add-ons, and tools, have been selected to streamline your workflow and maximize your creativity.\"},\"repeater\":[{\"file_path\":\"pojo-accessibility\\/pojo-accessibility.php\",\"title\":\"Ally - Web Accessibility. Simplified.\",\"url\":\"\",\"description\":\"Make your website more accessible with powerful tools to detect and fix issues, enhance usability, and create a better experience for all visitors.\",\"button_label\":\"Install\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/ally_logo.svg\",\"type\":\"wporg\"},{\"file_path\":\"site-mailer\\/site-mailer.php\",\"title\":\"Site Mailer\",\"url\":\"\",\"description\":\"Keep your WordPress emails out of the spam folder with improved deliverability and an easy setup\\u2014no need for an SMTP plugin or complicated configurations.\",\"button_label\":\"Install\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-mailer.svg\",\"type\":\"wporg\"},{\"file_path\":\"image-optimization\\/image-optimization.php\",\"title\":\"Image Optimizer\",\"url\":\"https:\\/\\/go.elementor.com\\/wp-dash-apps-author-uri-elementor-io\\/\",\"description\":\"Check out this incredibly useful plugin that will compress and optimize your images, giving you leaner, faster websites.\",\"button_label\":\"Install\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/image-optimizer.svg\",\"type\":\"wporg\"},{\"title\":\"Elementor AI\",\"url\":\"https:\\/\\/go.elementor.com\\/wp-dash-apps-author-uri-elementor-ai\\/\",\"description\":\"Boost creativity with Elementor AI. Craft & enhance copy, create custom CSS & Code, and generate images to elevate your website.\",\"button_label\":\"Let\'s go\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/elementor.svg\",\"type\":\"link\",\"condition\":{\"key\":\"introduction_meta\",\"value\":\"ai_get_started\"}}],\"footer\":{\"label\":\"Explore more add-ons\",\"file_path\":\"wp-admin\\/admin.php?page=elementor-apps\"}},\"sidebar_promotion_variants\":[{\"license\":[\"essential\"],\"is_enabled\":\"true\",\"type\":\"banner\",\"data\":{\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/essential-upgrade.svg\",\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-advanced-home-sidebar-upgrade\\/\"}},{\"license\":[\"free\"],\"is_enabled\":\"true\",\"type\":\"banner\",\"data\":{\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/upgrade-free.svg\",\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-home-sidebar-upgrade\\/\"}},{\"license\":[\"expired\"],\"is_enabled\":\"true\",\"type\":\"banner\",\"data\":{\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/upgrade-free.svg\",\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-home-sidebar-expired\\/\"}},{\"license\":[\"free\"],\"is_enabled\":\"false\",\"type\":\"default\",\"data\":{\"header\":{\"title\":\"Bring your vision to life\",\"description\":\"Get complete design flexibility for your website with Elementor Pro\'s advanced tools and premium features.\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/update-sidebar.svg\"},\"cta\":{\"label\":\"Upgrade Now\",\"url\":\"https:\\/\\/go.elementor.com\\/go-pro-home-sidebar-upgrade\\/\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-crown.svg\"},\"repeater\":[{\"title\":\"Popup Builder\"},{\"title\":\"Custom Code & CSS\"},{\"title\":\"E-commerce Features\"},{\"title\":\"Collaborative Notes\"},{\"title\":\"Form Submission\"},{\"title\":\"Form Integrations\"},{\"title\":\"Custom Attributes\"},{\"title\":\"Role Manager\"}]}},{\"license\":[\"pro\"],\"is_enabled\":\"false\",\"type\":\"default\",\"data\":{\"header\":{\"title\":\"Bring your vision to life\",\"description\":\"Get complete design flexibility for your website with Elementor Pro\'s advanced tools and premium features.\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/update-sidebar.svg\"},\"cta\":{\"label\":\"Upgrade Now\",\"url\":\"https:\\/\\/go.elementor.com\\/go-pro-home-sidebar-upgrade\\/\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-crown.svg\"},\"repeater\":[{\"title\":\"Popup Builder\"},{\"title\":\"Custom Code & CSS\"},{\"title\":\"E-commerce Features\"},{\"title\":\"Collaborative Notes\"},{\"title\":\"Form Submission\"},{\"title\":\"Form Integrations\"},{\"title\":\"Custom Attributes\"},{\"title\":\"Role Manager\"}]}},{\"license\":[\"one\"],\"is_enabled\":\"false\",\"type\":\"default\",\"data\":{\"header\":{\"title\":\"Bring your vision to life\",\"description\":\"Get complete design flexibility for your website with Elementor Pro\'s advanced tools and premium features.\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/update-sidebar.svg\"},\"cta\":{\"label\":\"Upgrade Now\",\"url\":\"https:\\/\\/go.elementor.com\\/go-pro-home-sidebar-upgrade\\/\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-crown.svg\"},\"repeater\":[{\"title\":\"Popup Builder\"},{\"title\":\"Custom Code & CSS\"},{\"title\":\"E-commerce Features\"},{\"title\":\"Collaborative Notes\"},{\"title\":\"Form Submission\"},{\"title\":\"Form Integrations\"},{\"title\":\"Custom Attributes\"},{\"title\":\"Role Manager\"}]}}],\"external_links\":[{\"label\":\"Help Center\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-question-mark.svg\",\"url\":\"https:\\/\\/elementor.com\\/help\\/\"},{\"label\":\"Youtube\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-youtube.svg\",\"url\":\"https:\\/\\/www.youtube.com\\/@Elementor\"},{\"label\":\"Facebook Community\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-community.svg\",\"url\":\"https:\\/\\/www.facebook.com\\/groups\\/Elementors\"},{\"label\":\"Blog\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-academic-hat.svg\",\"url\":\"https:\\/\\/elementor.com\\/blog\\/\"}]}\";}', 'off'),
(283, 'elementor_meta_generator_tag', '', 'auto'),
(284, 'elementor_css_print_method', 'external', 'auto'),
(285, 'elementor_optimized_image_loading', '1', 'auto'),
(286, 'elementor_optimized_gutenberg_loading', '1', 'auto'),
(287, 'elementor_lazy_load_background_images', '1', 'auto'),
(288, 'elementor_local_google_fonts', '0', 'auto'),
(289, 'elementor_element_cache_ttl', '24', 'auto'),
(290, 'elementor_experiment-container', 'default', 'auto'),
(291, 'elementor_experiment-nested-elements', 'default', 'auto'),
(292, 'elementor_experiment-mega-menu', 'default', 'auto'),
(293, 'elementor_experiment-e_font_icon_svg', 'default', 'auto'),
(294, 'elementor_experiment-additional_custom_breakpoints', 'default', 'auto'),
(295, 'elementor_experiment-e_optimized_markup', 'default', 'auto'),
(296, 'elementor_experiment-theme_builder_v2', 'default', 'auto'),
(322, '_elementor_pro_editor_activate_license_notice_dismissed', '1775374893', 'auto'),
(340, '_elementor_element_cache_unique_id', '937d0284354f58395b38c355c9dc209e', 'auto'),
(756, 'elementor_replace_url', '', 'auto'),
(757, 'elementor_rollback', '', 'auto'),
(758, 'elementor_rollback_pro_separator', '', 'auto'),
(759, 'elementor_rollback_pro', '', 'auto'),
(760, 'elementor_beta', 'no', 'auto'),
(761, 'elementor_maintenance_mode_mode', '', 'auto'),
(762, 'elementor_maintenance_mode_exclude_mode', 'logged_in', 'auto'),
(763, 'elementor_maintenance_mode_exclude_roles', 'a:0:{}', 'auto'),
(764, 'elementor_maintenance_mode_template_id', '', 'auto'),
(879, 'WPLANG', '', 'auto'),
(880, 'new_admin_email', 'arifwebsols@gmail.com', 'auto'),
(126, 'theme_mods_twentytwentyfive', 'a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1775372899;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'),
(125, 'recovery_keys', 'a:0:{}', 'off'),
(127, '_transient_wp_styles_for_blocks', 'a:2:{s:4:\"hash\";s:32:\"3199e2537fbad380fa221e097719f7c6\";s:6:\"blocks\";a:6:{s:11:\"core/button\";s:0:\"\";s:14:\"core/site-logo\";s:0:\"\";s:18:\"core/post-template\";s:0:\"\";s:18:\"core/term-template\";s:0:\"\";s:12:\"core/columns\";s:0:\"\";s:14:\"core/pullquote\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}', 'on'),
(1385, '_elementor_design_system_sync_css_meta', 'a:2:{s:4:\"time\";i:1775573577;i:0;b:0;}', 'auto'),
(268, 'elementor_pro_getresponse_api_key', '', 'auto'),
(269, 'elementor_pro_convertkit_api_key', '', 'auto'),
(270, 'elementor_pro_mailerlite_api_key', '', 'auto'),
(271, 'elementor_typekit-kit-id', '', 'auto'),
(272, 'elementor_font_awesome_pro_kit_id', '', 'auto'),
(273, 'elementor_pro_stripe_test_secret_key', '', 'auto'),
(274, 'elementor_validate_stripe_api_test_secret_key_button', '', 'auto'),
(275, 'elementor_pro_stripe_live_secret_key', '', 'auto'),
(276, 'elementor_validate_stripe_api_live_secret_key_button', '', 'auto'),
(277, 'elementor_stripe_legal_disclaimer', '', 'auto'),
(278, 'elementor_editor_break_lines', '', 'auto'),
(279, 'elementor_unfiltered_files_upload', '1', 'auto'),
(280, 'elementor_google_font', '1', 'auto'),
(281, 'elementor_form-submissions', '', 'auto'),
(253, 'elementor_disable_typography_schemes', 'yes', 'auto'),
(254, 'elementor_allow_tracking_last_update', '1775375296', 'auto'),
(255, 'elementor_allow_tracking', 'yes', 'auto'),
(256, 'elementor_google_maps_api_key', '', 'auto'),
(257, 'elementor_pro_recaptcha_site_key', '', 'auto'),
(258, 'elementor_pro_recaptcha_secret_key', '', 'auto'),
(259, 'elementor_pro_recaptcha_v3_site_key', '', 'auto'),
(260, 'elementor_pro_recaptcha_v3_secret_key', '', 'auto'),
(261, 'elementor_pro_recaptcha_v3_threshold', '0.5', 'auto'),
(262, 'elementor_pro_facebook_app_id', '', 'auto'),
(755, 'elementor_enable_inspector', '', 'auto'),
(267, 'elementor_pro_activecampaign_api_url', '', 'auto'),
(219, 'theme_mods_astra-child', 'a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:2;s:11:\"mobile_menu\";i:2;}s:18:\"custom_css_post_id\";i:-1;}', 'on'),
(655, 'wp_notes_notify', '1', 'on'),
(133, '_site_transient_timeout_browser_91e1a2a41c0741f7f47615ab9de2fb8a', '1775977519', 'off'),
(134, '_site_transient_browser_91e1a2a41c0741f7f47615ab9de2fb8a', 'a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"146.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'),
(135, '_site_transient_timeout_php_check_478252eea4acfca65f7d24ee29253bbe', '1775977519', 'off'),
(136, '_site_transient_php_check_478252eea4acfca65f7d24ee29253bbe', 'a:5:{s:19:\"recommended_version\";s:3:\"8.3\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}', 'off'),
(252, 'elementor_disable_color_schemes', 'yes', 'auto'),
(282, 'elementor_load_fa4_shim', '', 'auto'),
(251, 'elementor_cpt_support', 'a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}', 'auto'),
(1239, '_site_transient_update_themes', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1775571263;s:7:\"checked\";a:3:{s:11:\"astra-child\";s:5:\"1.0.0\";s:5:\"astra\";s:6:\"4.12.6\";s:16:\"twentytwentyfour\";s:3:\"1.3\";}s:8:\"response\";a:1:{s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.4.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}}s:9:\"no_update\";a:1:{s:5:\"astra\";a:6:{s:5:\"theme\";s:5:\"astra\";s:11:\"new_version\";s:6:\"4.12.6\";s:3:\"url\";s:35:\"https://wordpress.org/themes/astra/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/theme/astra.4.12.6.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.3\";}}s:12:\"translations\";a:0:{}}', 'off'),
(1058, '_transient_timeout_elementor_remote_info_api_data_4.0.1', '1775584759', 'off'),
(1059, '_transient_elementor_remote_info_api_data_4.0.1', 'a:4:{s:9:\"timestamp\";s:10:\"1775540474\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:82:{i:0;a:4:{s:4:\"name\";s:6:\"search\";s:5:\"title\";s:6:\"Search\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:3;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-2\";s:5:\"title\";s:7:\"Classic\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-3\";s:5:\"title\";s:8:\"Showcase\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:6;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-4\";s:5:\"title\";s:5:\"Links\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:8;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:9;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-5\";s:5:\"title\";s:8:\"Services\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:10;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:11;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-6\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:12;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-7\";s:5:\"title\";s:13:\"Business Card\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:14;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:10:\"off-canvas\";s:5:\"title\";s:10:\"Off-Canvas\";s:4:\"icon\";s:16:\"eicon-off-canvas\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:25;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:26;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:27;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:33;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:34;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:35;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:36;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:37;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:38;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:39;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:40;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:41;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:43;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:51;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:52;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:53;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:54;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:55;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:57;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:75;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:76;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:77;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:78;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:79;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:80;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:81;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.9.4\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}', 'off'),
(1060, '_site_transient_timeout_community-events-de3bfefd66685f0a991fef0c5a558dea', '1775583780', 'off'),
(1061, '_site_transient_community-events-de3bfefd66685f0a991fef0c5a558dea', 'a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"45.120.96.0\";}s:6:\"events\";a:1:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:78:\"WordPress Campus Connect Pundra University of Science &amp; Technology, Bogura\";s:3:\"url\";s:60:\"https://events.wordpress.org/campusconnect/2026/pust-bogura/\";s:6:\"meetup\";s:0:\"\";s:10:\"meetup_url\";s:0:\"\";s:4:\"date\";s:19:\"2026-04-18 00:00:00\";s:8:\"end_date\";s:19:\"2026-04-18 00:00:00\";s:20:\"start_unix_timestamp\";i:1776448800;s:18:\"end_unix_timestamp\";i:1776448800;s:8:\"location\";a:4:{s:8:\"location\";s:18:\"Bogura, Bangladesh\";s:7:\"country\";s:2:\"BD\";s:8:\"latitude\";d:24.9223067;s:9:\"longitude\";d:89.3490259;}}}}', 'off'),
(1062, '_site_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3', '1775583780', 'off');
INSERT INTO `wpd_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1063, '_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:\"Thu, 02 Apr 2026 16:10:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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-62213\";s: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:44:\"From AI to Open Source at WordCamp Asia 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:56:\"https://wordpress.org/news/2026/04/wcasia-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:\"Thu, 02 Apr 2026 16:10:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s: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=20341\";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:386:\"April 9-11, 2026 &#124; Jio World Convention Centre, Mumbai, India WordCamp Asia 2026 brings the WordPress community to Mumbai, India, from April 9 to 11, with a schedule shaped around artificial intelligence, enterprise WordPress, developer workflows, product strategy, and open source collaboration. For attendees planning their time, the program offers a useful view of the [&#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:13900:\"\n<p class=\"wp-block-paragraph\"><strong>April 9-11, 2026 | Jio World Convention Centre, Mumbai, India</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp Asia 2026 brings the WordPress community to Mumbai, India, from April 9 to 11, with a schedule shaped around artificial intelligence, enterprise WordPress, developer workflows, product strategy, and open source collaboration. For attendees planning their time, the program offers a useful view of the ideas, tools, and practical challenges shaping WordPress today.</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://asia.wordcamp.org/2026/event-pass/\" style=\"background:linear-gradient(135deg,rgb(42,5,123) 0%,rgb(42,5,123) 100%)\" target=\"_blank\" rel=\"noreferrer noopener\">Get Your Event Pass</a></div>\n\n\n\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background wp-element-button\" href=\"https://asia.wordcamp.org/2026/schedule/\" style=\"background:linear-gradient(135deg,rgb(42,5,123) 0%,rgb(42,5,123) 100%)\" target=\"_blank\" rel=\"noreferrer noopener\">WC Asia 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://asia.wordcamp.org/2026/\" style=\"background:linear-gradient(135deg,rgb(42,5,123) 0%,rgb(42,5,123) 100%)\" target=\"_blank\" rel=\"noreferrer noopener\">About WordCamp Asia</a></div>\n</div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/10/20250220-DSC_1853-scaled-1.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-19211\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/10/20250220-DSC_1853-scaled-1.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/10/20250220-DSC_1853-scaled-1.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/10/20250220-DSC_1853-scaled-1.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/10/20250220-DSC_1853-scaled-1.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/10/20250220-DSC_1853-scaled-1.jpg?resize=2048%2C1366&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Keynotes to Set the Stage</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The keynote sessions at WordCamp Asia 2026 help frame some of the biggest conversations at this year’s event.</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-full\"><img data-recalc-dims=\"1\" decoding=\"async\" width=\"1078\" height=\"1076\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/04/Screenshot-2026-04-02-at-11.31.10-am.png?resize=1078%2C1076&#038;ssl=1\" alt=\"\" class=\"wp-image-20366\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/04/Screenshot-2026-04-02-at-11.31.10-am.png?w=1078&amp;ssl=1 1078w, https://i0.wp.com/wordpress.org/news/files/2026/04/Screenshot-2026-04-02-at-11.31.10-am.png?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/04/Screenshot-2026-04-02-at-11.31.10-am.png?resize=1024%2C1022&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/04/Screenshot-2026-04-02-at-11.31.10-am.png?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/wordpress.org/news/files/2026/04/Screenshot-2026-04-02-at-11.31.10-am.png?resize=768%2C767&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /><figcaption class=\"wp-element-caption\"><a href=\"https://asia.wordcamp.org/2026/speaker/matt-mullenweg/\">Ma.tt Mullenweg</a>, co-founder of WordPress and CEO of Automattic, is expected to speak about the future of the open web and the ever-evolving role that WordPress plays.</figcaption></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" decoding=\"async\" width=\"984\" height=\"986\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/03/Screenshot-2026-03-31-at-11.47.01-am.png?resize=984%2C986&#038;ssl=1\" alt=\"\" class=\"wp-image-20346\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/03/Screenshot-2026-03-31-at-11.47.01-am.png?w=984&amp;ssl=1 984w, https://i0.wp.com/wordpress.org/news/files/2026/03/Screenshot-2026-03-31-at-11.47.01-am.png?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/03/Screenshot-2026-03-31-at-11.47.01-am.png?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/wordpress.org/news/files/2026/03/Screenshot-2026-03-31-at-11.47.01-am.png?resize=768%2C770&amp;ssl=1 768w\" sizes=\"(max-width: 984px) 100vw, 984px\" /><figcaption class=\"wp-element-caption\"><a href=\"https://asia.wordcamp.org/2026/speaker/mary-hubbard/\">Mary Hubbard</a>, Executive Director of WordPress, will also join a fireside chat moderated by <a href=\"https://asia.wordcamp.org/2026/speaker/shilpa-shah/\">Shilpa Shah</a>, focusing on leadership, education initiatives, artificial intelligence, and community growth.</figcaption></figure>\n</div>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">Together, they offer an early view of the themes and discussions unfolding across WordPress in 2026.<br></p>\n\n\n\n<h2 class=\"wp-block-heading\">AI, Automation, and the Future of WordPress</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Artificial intelligence is one of the clearest threads running through the program. Sessions from <a href=\"https://asia.wordcamp.org/2026/speaker/fellyph-cintra/\">Fellyph Cintra</a>, <a href=\"https://asia.wordcamp.org/2026/speaker/fumiki-takahashi/\">Fumiki Takahashi</a>, and <a href=\"https://asia.wordcamp.org/2026/speaker/nirav-mehta/\">Nirav Mehta</a> examine how AI is already influencing WordPress through Core discussions, testing workflows, plugin development, and day-to-day implementation. That same theme continues in sessions on marketing and content strategy, including <a href=\"https://asia.wordcamp.org/2026/speaker/adeline-dahal/\">Adeline Dahal’s</a> work on structuring WordPress content to make it more machine-readable. </p>\n\n\n\n<p class=\"wp-block-paragraph\">This cross-section of presentations shows how automation is moving from concept to practice. From autonomous testing with WordPress Playground to AI-supported development workflows, these sessions highlight applicable tools and skills that teams can start using right away, not just concepts. For attendees interested in where WordPress is heading, this is one of the strongest themes across the event.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Enterprise WordPress and Scalability</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Enterprise sessions take that discussion further by focusing on scale, architecture, and operational complexity. <a href=\"https://asia.wordcamp.org/2026/speaker/rahul-bansal/\">Rahul Bansal</a>, <a href=\"https://asia.wordcamp.org/2026/speaker/james-giroux/\">James Giroux</a>, Anirban Mukherji, and Abid Murshed are among the speakers exploring how WordPress supports larger organizations, more complex commerce systems, and demanding digital environments. Their sessions look at growth, implementation, and the kinds of decisions that matter when WordPress is supporting business-critical work.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Other talks in this track focus on the realities of enterprise operations, including migration risk, observability, and long-term performance. Together, they show how WordPress continues to adapt to larger systems and more complex digital ecosystems without losing the flexibility that makes it widely used in the first place.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Developer Experience and Modern Practices</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The developer track stays grounded in both Core tools and everyday engineering practice. <a href=\"https://asia.wordcamp.org/2026/speaker/ryan-welcher/\">Ryan Welcher</a> will cover the Interactivity API, <a href=\"https://asia.wordcamp.org/2026/speaker/jonathan-desrosiers/\">Jonathan Desrosiers</a> will look at automation in open source, and <a href=\"https://asia.wordcamp.org/2026/speaker/takayuki-miyoshi/\">Takayuki Miyoshi</a> will introduce a schema-sharing approach to form management. These sessions point to a broader shift toward building WordPress systems that are more dynamic, maintainable, and easier to scale over time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">These more technical presentations also include sessions on the WordPress HTML API, Content Security Policy, open source data pipelines, and evolving plugin standards. Rather than focusing on a single type of builder, this part of the schedule addresses developers working across infrastructure, security, front-end experiences, and long-term platform health.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Community, Education, and Open Source</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The schedule also makes space for the people and ideas that support WordPress beyond engineering alone. A panel featuring <a href=\"https://asia.wordcamp.org/2026/speaker/anand-upadhyay/\">Anand Upadhyay</a> and <a href=\"https://asia.wordcamp.org/2026/speaker/maciej-pilarski/\">Maciej Pilarski</a>, moderated by <a href=\"https://asia.wordcamp.org/2026/speaker/destiny-kanno/\">Destiny Kanno</a>, looks at education initiatives and student pathways into open source. <a href=\"https://asia.wordcamp.org/2026/speaker/kazuko-kaneuchi/\">Kazuko Kaneuchi</a> will reflect on the story of Wapuu and the culture of contribution around WordPress. At the same time, <a href=\"https://asia.wordcamp.org/2026/speaker/kotaro-kitamura/\">Kotaro Kitamura</a> and <a href=\"https://asia.wordcamp.org/2026/speaker/chiharu-nagatomi/\">Chiharu Nagatomi</a> will share how WordPress and its community shaped their professional journeys.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That wider perspective continues in sessions on product thinking, marketing, career growth, and business strategy. <span style=\"margin: 0px;padding: 0px\">Speakers, including&nbsp;<a href=\"https://asia.wordcamp.org/2026/speaker/nabin-jaiswal/\" target=\"_blank\" rel=\"noreferrer noopener\">Nabin Jaiswal</a>,&nbsp;<a href=\"https://asia.wordcamp.org/2026/speaker/himani-kankaria/\" target=\"_blank\" rel=\"noreferrer noopener\">Himani Kankaria</a>,&nbsp;<a href=\"https://asia.wordcamp.org/2026/speaker/julian-song/\" target=\"_blank\" rel=\"noreferrer noopener\">Julian Song</a>,&nbsp;<a href=\"https://asia.wordcamp.org/2026/speaker/karishma-sundaram/\" target=\"_blank\" rel=\"noreferrer noopener\">Karishma Sundaram</a>,&nbsp;<a href=\"https://asia.wordcamp.org/2026/speaker/sandeep-kelvadi/\" target=\"_blank\" rel=\"noreferrer noopener\">Sandeep Kelvadi</a>,&nbsp;<a href=\"https://asia.wordcamp.org/2026/speaker/aviral-mittal/\" target=\"_blank\" rel=\"noreferrer noopener\">Aviral Mittal</a>,&nbsp;<a href=\"https://asia.wordcamp.org/2026/speaker/anh-tran/\" target=\"_blank\" rel=\"noreferrer noopener\">Anh Tran</a>, and&nbsp;<a href=\"https://asia.wordcamp.org/2026/speaker/anna-hurko/\" target=\"_blank\" rel=\"noreferrer noopener\">Anna Hurko,</a>&nbsp;explore how WordPress works an</span>d connects with decision-making, discoverability, professional development, and organizational growth. Taken together, these sessions reflect one of WordPress’s long-standing strengths: its ability to connect software, learning, and community in the same space.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Hands-on Workshops</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Hands-on workshops round out the schedule, offering practical sessions for attendees who want to move from ideas to implementation. They include:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>From On-Demand to Cloud: Automate WordPress Installations Like a Pro</li>\n\n\n\n<li>AI + MCP to build, manage, and automate WordPress end-to-end</li>\n\n\n\n<li>Building AI Agents with self-editing memory</li>\n\n\n\n<li>Building Better WordPress Experiences with AI-Driven Development Workflows</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">Explore the <strong><a href=\"https://asia.wordcamp.org/2026/schedule/\">full schedule</a></strong> to plan your sessions, and get your <strong><a href=\"https://asia.wordcamp.org/2026/event-pass/\">event pass</a></strong> to join WordCamp Asia 2026 in Mumbai.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"754\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/10/wordcamp-asia-2025-family-photo.webp?resize=1024%2C754&#038;ssl=1\" alt=\"\" class=\"wp-image-19213\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/10/wordcamp-asia-2025-family-photo.webp?resize=1024%2C754&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/10/wordcamp-asia-2025-family-photo.webp?resize=300%2C221&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/10/wordcamp-asia-2025-family-photo.webp?resize=768%2C566&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/10/wordcamp-asia-2025-family-photo.webp?resize=1536%2C1131&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/10/wordcamp-asia-2025-family-photo.webp?w=2048&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Mumbai is calling. See you at WordCamp Asia 2026!&nbsp;</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em><strong>Note: </strong>Much of the credit belongs to <a href=\"https://profiles.wordpress.org/webtechpooja/\">@webtechpooja</a> (<a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a>) for help in writing this piece.</em></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:\"20341\";s: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:75:\"\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 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2026/03/wordpress-7-0-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 Mar 2026 18:37: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:\"category\";a:7:{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: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=20324\";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 second Release Candidate (“RC2”) 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 RC2 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: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:8740:\"\n<p class=\"wp-block-paragraph\">The second Release Candidate (“RC2”) 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 RC2 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 RC2 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-RC2.zip\">RC2 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-RC2</code></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>April 9, 2026</strong>. The full <a href=\"https://make.wordpress.org/core/2026/02/12/wordpress-7-0-release-party-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 RC2?</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>What’s new in WordPress 7.0</strong>? Check out the <a href=\"https://wordpress.org/news/2026/02/wordpress-7-0-beta-1/\">Beta 1 announcement</a> and <a href=\"https://make.wordpress.org/core/tag/dev-notes+7-0/\">7.0 Developer Notes</a> for details and highlights. For technical information related to issues addressed since <a href=\"https://wordpress.org/news/2026/03/wordpress-7-0-release-candidate-1/\">RC1</a>, you can browse the following links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/7.0?since=2026-03-24&amp;until=2026-03-26\">GitHub commits</a> since March 24, 2026</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=03%2F24%2F2026..03%2F26%2F2026&amp;milestone=7.0&amp;group=component&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Closed Trac tickets</a> since March 24, 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 help the world’s most popular open source web platform, regardless of your technical expertise.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Get involved in testing</h2>\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.&nbsp;</p>\n\n\n\n<p class=\"wp-block-paragraph\">Your help testing the WordPress 7.0 RC1 version is key to ensuring that the final release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important. 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;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\">What else to test:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/test/2026/03/11/its-time-to-test-real-time-collaboration/\">Real Time Collaboration</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2026/02/27/call-for-testing-pattern-editing-and-content-only-interactivity-in-wordpress-7-0/\">Pattern Editing and content-only Interactivity</a></li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">If you encounter an 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.&nbsp; 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<h3 class=\"wp-block-heading\">Test on your hosting platforms</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Web hosts provide vital infrastructure for supporting WordPress and its users. Testing on hosting systems helps inform the development process while ensuring that WordPress and hosting platforms are fully compatible, free of errors, optimized for the best possible user experience, and that updates roll out to customer sites without issue.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Want to test WordPress on your hosting system? <a href=\"https://make.wordpress.org/hosting/test-results-getting-started/\">Get started with configuring distributed hosting tests here</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p class=\"wp-block-paragraph\">For plugin and theme authors, your products play an integral role in extending the functionality and value of WordPress for all users.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Thanks for continuing to test your themes and plugins with the WordPress 7.0 beta releases. If you haven’t yet, make sure to conclude your testing and update the <em>&#8220;Tested up to”</em> version in your <a href=\"https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/\">plugin’s readme file</a> to <code>7.0</code>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you find compatibility issues, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forum</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 (RC2) also 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 RC2 haiku</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><em>At first just a dream</em>,</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>RC2 flows like a stream</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>with seven-oh gleam.</em></p>\n\n\n\n<p class=\"has-text-align-right wp-block-paragraph\"><em>Props to <a href=\'https://profiles.wordpress.org/amykamala/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>amykamala</a> </em><a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a> <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:\"20324\";s: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: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:49:\"WP Packages is Working the Way Open Source Should\";s:7:\"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://wordpress.org/news/2026/03/wp-packages/\";s: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, 25 Mar 2026 15:27: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:8:\"category\";a:1:{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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20214\";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:395:\"When WP Engine acquired WPackagist on March 12, the WordPress developer community faced a familiar question: what happens when critical open source infrastructure ends up under corporate control? The community already had an answer in progress. Four days later, WP Packages (formerly WP Composer) launched as a fully independent, community-funded alternative, with some neat additional [&#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:18:\"Jonathan Bossenger\";s: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:8351:\"\n<p class=\"wp-block-paragraph\">When WP Engine acquired WPackagist on March 12, the WordPress developer community faced a familiar question: what happens when critical open source infrastructure ends up under corporate control? The community already had an answer in progress. Four days later, <a href=\"https://wp-packages.org/\" target=\"_blank\" rel=\"noreferrer noopener\">WP Packages</a> (<a href=\"https://roots.io/wp-composer-is-now-wp-packages/\">formerly WP Composer</a>) launched as a fully independent, community-funded alternative, with some neat additional features.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Built by <a href=\"https://profiles.wordpress.org/retlehs/\">Ben Words</a> from <a href=\"https://roots.io/\" target=\"_blank\" rel=\"noreferrer noopener\">Roots</a>, the team behind Bedrock, Sage, and Trellis, WP Packages is a new open source Composer repository for WordPress plugins and themes. <a href=\"https://getcomposer.org/\">Composer</a> is PHP&#8217;s dependency manager, and it is how many professional WordPress developers install and update plugins and themes in their projects. Every free plugin and theme in the WordPress.org directory is available through WP Packages. <a href=\"#switch\">Migrating from WPackagist</a> can be done via a single script or a few terminal commands.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What Happened and Why It Matters</strong></h2>\n\n\n\n<p class=\"wp-block-paragraph\">WPackagist was created in 2013 by Outlandish, a UK-based digital cooperative, and it served the WordPress Composer ecosystem for over a decade. In its later years the project suffered from deferred maintenance, slow update cycles, and little to no community input. When WP Engine announced the acquisition, developers raised immediate concerns about a private-equity-backed corporation controlling infrastructure this foundational to the WordPress developer workflow. WP Engine immediately updated the Composer <code>info</code> field to display a &#8220;WPackagist is now maintained by WP Engine&#8221; notice in every developer&#8217;s terminal. A small thing, but telling. That&#8217;s how corporate ownership changes the relationship between a tool and its users.</p>\n\n\n\n<div class=\"wp-block-group is-layout-constrained wp-container-core-group-is-layout-c1abb2c1 wp-block-group-is-layout-constrained\">\n<figure class=\"wp-block-embed aligncenter is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">And it only took less than 24h for this to pop up on every composer run:<br>&quot;Info from <a href=\"https://t.co/1EEb4PZ9N2\">https://t.co/1EEb4PZ9N2</a>: WPackagist is now maintained by WP Engine. Learn more at <a href=\"https://t.co/89b2hBWxd9\">https://t.co/89b2hBWxd9</a>&quot;<br>Which I&#39;m sure is a permanent message that will just shift to marketing. Prove me wrong<img src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f921.png\" alt=\"🤡\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://t.co/HdcuQPkUqV\">https://t.co/HdcuQPkUqV</a></p>&mdash; Jonathan de Jong (@jonathan_dejong) <a href=\"https://twitter.com/jonathan_dejong/status/2032389680415625239?ref_src=twsrc%5Etfw\">March 13, 2026</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>\n</div></figure>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">Ben had already started building a WPackagist replacement last August, long before the acquisition made headlines. When WP Engine&#8217;s deal landed, he accelerated the launch, <a href=\"https://roots.io/introducing-wp-composer-as-a-wpackagist-replacement/\">going live on March 16</a> with a fully <a href=\"https://github.com/roots/wp-composer\">open source repository on GitHub</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\"><em>Open source repo ≠ transparent system. WP Packages makes everything public, including infrastructure and build process.</em> &#8211; <a href=\"https://x.com/retlehs/status/2034277432241385727?s=20\">Ben Word on X</a></p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">It&#8217;s also just a better tool. WP Packages supports Composer v2&#8217;s metadata-url protocol, which lets Composer fetch metadata only for the packages a project actually needs. WPackagist still relies on the older provider-includes approach, forcing Composer to download large index files before resolving dependencies. Cold dependency resolves on WP Packages are roughly 17x faster: 0.7 seconds for 10 plugins compared to 12.3 seconds on WPackagist.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WP Packages also uses CDN caching with public cache headers and serves immutable, content-addressed per-package files. Package naming is cleaner (<code>wp-plugin/</code> and <code>wp-theme/</code> instead of <code>wpackagist-plugin/</code> and <code>wpackagist-theme/</code>), metadata includes plugin and theme authors, descriptions, and homepage URLs that WPackagist has been missing for years, and updates sync every five minutes rather than WPackagist&#8217;s roughly 90-minute cycle.</p>\n\n\n\n<h2 id=\"switch\" class=\"wp-block-heading\"><strong>How to Switch</strong></h2>\n\n\n\n<p class=\"wp-block-paragraph\">Switching from WPackagist to WP Packages requires just a few terminal commands.</p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Remove your existing WPackagist packages:</li>\n</ol>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\"><code>composer remove wpackagist-theme/twentytwentyfive</code></code></pre>\n\n\n\n<ol start=\"2\" class=\"wp-block-list\">\n<li>Remove the WPackagist repository and add WP Packages:</li>\n</ol>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\"><code>composer config --unset repositories.wpackagist &amp;&amp; composer config repositories.wp-composer composer https://repo.wp-packages.org</code></code></pre>\n\n\n\n<ol start=\"3\" class=\"wp-block-list\">\n<li>Require packages with the new naming:</li>\n</ol>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\"><code>composer require wp-theme/twentytwentyfive</code></code></pre>\n\n\n\n<p class=\"wp-block-paragraph\">Alternatively, use the <a href=\"https://github.com/roots/wp-composer/blob/main/scripts/migrate-from-wpackagist.sh\">migration script</a> to automatically update your <code>composer.json</code>:</p>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">curl -sO https://raw.githubusercontent.com/roots/wp-packages/main/scripts/migrate-from-wpackagist.sh &amp;&amp; bash migrate-from-wpackagist.sh</code></pre>\n\n\n\n<p class=\"wp-block-paragraph\">Roots also provides a <a href=\"https://github.com/roots/wp-packages-changelog-action\">WP Packages Changelog Action</a> for GitHub workflows that tracks dependency updates using the new naming format. Projects using <a href=\"https://roots.io/bedrock/\">Bedrock</a> already ship with WP Packages configured out of the box.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Open Source Wins</strong></h2>\n\n\n\n<p class=\"wp-block-paragraph\">The entire WP Packages project is public. The application code, documentation, and even the full Ansible deployment configuration are available on GitHub. Anyone can fork the repository and run their own WordPress Composer registry. Ben has also committed publicly that WP Packages will never use the Composer <code>info</code> field to push messages, ads, or upsells into developer terminals. That kind of restraint is easier to promise when a project answers to its community rather than to a corporate parent.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WP Packages is funded through <a href=\"https://github.com/sponsors/roots\">GitHub Sponsors</a>. Current sponsors include <a href=\"https://carrot.com/\">Carrot</a>, <a href=\"https://kinsta.com/\">Kinsta</a>, <a href=\"https://wordpress.com/\">WordPress.com</a>, and <a href=\"https://www.itineris.co.uk/\">Itineris</a>. The WordPress ecosystem has always been at its strongest when the community builds the tools it needs in the open. Ben saw a gap forming months before anyone else was paying attention, built something better than what existed, and released it for everyone. No acquisition required. No boardroom decisions about availability or pricing. Just developers solving a problem for other developers and sharing the result. Open source wins.</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:\"20214\";s: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: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:33:\"WordPress 7.0 Release Candidate 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2026/03/wordpress-7-0-release-candidate-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 24 Mar 2026 19:32: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:6:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"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:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:7:\"release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20229\";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:364:\"The first Release Candidate (“RC1”) for WordPress 7.0 is ready for download and testing! This version of the WordPress software is still under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it’s recommended to evaluate RC1 on a test server and site. WordPress 7.0 RC1 [&#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:11508:\"\n<p class=\"wp-block-paragraph\">The first Release Candidate (“RC1”) 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 still under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it’s recommended to evaluate RC1 on a test server and site.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 RC1 can be tested using any of the following methods:</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-RC1.zip\">RC1 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>RC1</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>April 9, 2026</strong>. The full <a href=\"https://make.wordpress.org/core/2026/02/12/wordpress-7-0-release-party-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 RC1?</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>What’s new in WordPress 7.0</strong>? Check out the <a href=\"https://wordpress.org/news/2026/02/wordpress-7-0-beta-1/\">Beta 1 announcement</a> and <a href=\"https://make.wordpress.org/core/tag/dev-notes+7-0/\">WordPress 7.0 Developer Notes</a> for details and highlights.</p>\n\n\n\n<p class=\"wp-block-paragraph\">RC1 contains more than 134 updates and fixes since the Beta 5 release. You can browse the technical details for all issues addressed since Beta 5 using these links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/7.0?since=2026-03-12&amp;until=2026-03-24\">GitHub commits</a> since March 12, 2026</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=03%2F12%2F2026..03%2F24%2F2026&amp;milestone=7.0&amp;group=component&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Closed Trac tickets</a> since March 12, 2026</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">New Features since Beta 1</h3>\n\n\n\n<p class=\"wp-block-paragraph\">The release squad in conjunction with project leadership identified additional features that were not ready for beta 1 but are included in RC1 as supporting requirements for flagship features of the release.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://core.trac.wordpress.org/ticket/64730\">AI Connectors Screen</a> &#8211; A new admin screen for connecting AI providers to your site and an <a href=\"https://core.trac.wordpress.org/ticket/64791\">API for registering additional ones</a>.</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/75757\">The Command Palette</a> is now available via a <code>⌘K</code> or <code>Ctrl+K</code> shortcut in the admin bar.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">Want to look deeper into the details and technical notes for this release? These tickets and pull requests are just some of the latest updates:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/76700\">#GB-76700</a>: Client Side Media as plugin only</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/76722\">#GB-76722</a>: Add support for non-AI providers on Connector&#8217;s Screen</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/76736\">#GB-76736</a>: New activation hook to enable RTC by default</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/ticket/64904\">#64904</a>: <code>WP_ALLOW_COLLABORATION</code> constant for RTC</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/76704\">#</a><a href=\"https://github.com/WordPress/gutenberg/pull/76643\">GB-76704</a>: Increased polling intervals for RTC</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/76643\">#GB-76643</a>: Real Time Collaboration is opt-in by default</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/76460\">#GB-76460</a>: Toggle to turn RTC session notifications on/off</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/changeset/62046\">#62046</a>: Update PHP AI Client package to 1.3.1</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/76550\">#GB-76550</a>: Revisions: Show changed block attributes in sidebar</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/changeset/62067\">#62067</a>: Single config option to disable all LLM related features</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/ticket/63697\">#63697</a>: OPCache added to <code>Site Health &gt; Info &gt; Server</code></li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>The final release is on track for April 9, 2026.</strong> As always, a successful release depends on your confirmation during testing. So please download and test!</p>\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 help the world’s most popular open source web platform, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Help test this release</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.&nbsp;Your help testing the WordPress 7.0 RC1 version is key to ensuring that the final release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important. 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.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What to test:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/test/2026/03/11/its-time-to-test-real-time-collaboration/\">Real Time Collaboration</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2026/02/27/call-for-testing-pattern-editing-and-content-only-interactivity-in-wordpress-7-0/\">Pattern Editing and content-only Interactivity</a></li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">If you encounter an 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\">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>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Test on your hosting platforms</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Hosting systems provide vital infrastructure for supporting WordPress and its users. Testing on hosting infrastructure ensures that WordPress and hosting systems are fully compatible, free of errors, optimized for the best possible user experience, and that updates roll out to customer sites without issue. Thank you to all <a href=\"https://make.wordpress.org/hosting/test-results/\">web hosts who test WordPress</a>!</p>\n\n\n\n<p class=\"wp-block-paragraph\">Want to set up testing on your hosting system? <a href=\"https://make.wordpress.org/hosting/test-results-getting-started/\">Get started with configuring distributed hosting tests here</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p class=\"wp-block-paragraph\">For plugin and theme authors, your products play an integral role in extending the functionality and value of WordPress for all users.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Thanks for continuing to test your themes and plugins with the WordPress 7.0 beta releases. With RC1, you’ll want to conclude your testing and update the <em>“Tested up to”</em> version in your <a href=\"https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/\">plugin’s readme file</a> to <code>7.0</code>. If you find compatibility issues, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forum</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives</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? Русский? 日本語? हिन्दी? বাংলা? मराठी? ಕನ್ನಡ?  You can <a href=\"https://make.wordpress.org/polyglots/handbook/translating/\">help translate WordPress into more than 100 languages</a>. This release milestone (RC1) marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 7.0 release cycle. However, strings will not be available for translation until RC2 later this week.</p>\n\n\n\n<h2 class=\"wp-block-heading\">An RC1 haiku</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><em>RC1 arrives</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>with momentum, sped up time</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>and jazz on the mind.</em></p>\n\n\n\n<p class=\"has-text-align-right wp-block-paragraph\"><em>Props to <a href=\'https://profiles.wordpress.org/4thhubbard/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>4thhubbard</a>, <a href=\'https://profiles.wordpress.org/desrosj/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>desrosj</a>, <a href=\'https://profiles.wordpress.org/jeffpaul/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jeffpaul</a>, <a href=\'https://profiles.wordpress.org/chaion07/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chaion07</a>, <a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a>, <a href=\'https://profiles.wordpress.org/jorbin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jorbin</a> for collaboration and review.</em></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:\"20229\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:72:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 7.0 Beta 5\";s:7:\"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/03/wordpress-7-0-beta-5/\";s: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, 12 Mar 2026 15:49: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:6:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"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:4:\"beta\";s: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:\"release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20189\";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:342:\"WordPress 7.0 Beta 5 is ready for download and testing! This version of the WordPress software is still under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it’s recommended to test Beta 5 on a test server and site.WordPress 7.0 Beta 5 can be tested [&#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:18:\"Ahmed Kabir Chaion\";s: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:6719:\"\n<p class=\"wp-block-paragraph\">WordPress 7.0 Beta 5 is ready for download and testing!</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>This version of the WordPress software is still under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it’s recommended to test Beta 5 on a test server and site.WordPress 7.0 Beta 5 can be tested using any of the following methods:</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-beta5.zip\">Beta 5 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-beta</code>5</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.  No setup is required – just click and go! </td></tr></tbody></table></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The scheduled final release date for WordPress 7.0 is still <strong>April 9, 2026</strong>. &nbsp;The full <a href=\"https://make.wordpress.org/core/2026/02/12/wordpress-7-0-release-party-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. <strong>What’s new in WordPress 7.0</strong>? Check out the <a href=\"https://wordpress.org/news/2026/02/wordpress-7-0-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2026/02/wordpress-7-0-beta-2/\">Beta 2</a>, <a href=\"https://wordpress.org/news/2026/03/wordpress-7-0-beta-3/\">Beta 3</a> and <a href=\"https://wordpress.org/news/2026/03/wordpress-6-9-3-and-7-0-beta-4/\">Beta 4</a> announcements for details and highlights.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to test this release</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Your help testing the WordPress 7.0 Beta 5 version is key to ensuring everything in the release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important. 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.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you encounter an 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>.Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Beta 5 updates and highlights</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 Beta 5 contains more than 101 updates and fixes since the Beta 3 release.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Each beta cycle focuses on bug fixes, and more are on the way with your help through testing. You can browse the technical details for all issues addressed since Beta 3 using these links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/7.0?since=2026-03-05&amp;until=2026-03-12\">GitHub commits</a> since March 5, 2026</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=03%2F05%2F2026..03%2F12%2F2026&amp;milestone=7.0&amp;group=component&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Closed Trac tickets</a> since March 5, 2026</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">Issues addressed since Beta 4:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/7.0?since=2026-03-10&amp;until=2026-03-12\">GitHub commits</a> since March 10, 2026</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=03%2F10%2F2026..03%2F12%2F2026&amp;milestone=7.0&amp;group=component&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Closed Trac tickets</a> since March 10, 2026</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>WordPress 7.0 Beta 5 contains a new feature!</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">Instantly access all the tools you need with a single click using the <strong>new Command Palette shortcut in the Omnibar</strong>! In 7.0 Beta 5, logged-in editors will see a field with a <code>⌘K</code> or <code>Ctrl+K</code> symbol in the upper admin bar that unfurls the command palette when clicked. The new command palette entry point streamlines navigation and customization, giving you full control from anywhere on your site &#8211; whether you’re editing, designing or just browsing plugins.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A Beta 5 haiku</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><em>A smooth melody</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beta 5 plays on its strings.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Seven brings good things.</em></p>\n\n\n\n<p class=\"has-text-align-right wp-block-paragraph\"><em>Props to <a href=\'https://profiles.wordpress.org/amykamala/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>amykamala</a>, <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a> and <a href=\'https://profiles.wordpress.org/4thhubbard/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>4thhubbard</a> for proofreading and review.</em></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:\"20189\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"WordPress 6.9.4 Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/news/2026/03/wordpress-6-9-4-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 Mar 2026 15:34:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{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:14:\"minor-releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i: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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20184\";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:366:\"WordPress 6.9.4 is now available WordPress 6.9.2 and WordPress 6.9.3 were released yesterday, addressing 10 security issues and a bug that affected template file loading on a limited number of sites. The WordPress Security Team has discovered that not all of the security fixes were fully applied, therefore 6.9.4 has been released containing the necessary [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"John Blackbourn\";s: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:2240:\"\n<h2 class=\"wp-block-heading\">WordPress 6.9.4 is now available</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.org/news/2026/03/wordpress-6-9-2-release/\">WordPress 6.9.2</a> and <a href=\"https://wordpress.org/news/2026/03/wordpress-6-9-3-and-7-0-beta-4/\">WordPress 6.9.3</a> were released yesterday, addressing 10 security issues and a bug that affected template file loading on a limited number of sites.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The WordPress Security Team has discovered that not all of the security fixes were fully applied, therefore 6.9.4 has been released containing the necessary additional fixes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because this is a security release,<strong> it is recommended that you update your sites immediately</strong>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You can <a href=\"https://wordpress.org/wordpress-6.9.4.zip\">download WordPress 6.9.4 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”. If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p class=\"wp-block-paragraph\">For more information on WordPress 6.9.4, please visit the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-9-4/\">version page on the HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Security updates included in this release</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The security team would like to thank the contributors who reported and investigated this issue, in particular <a href=\"https://profiles.wordpress.org/kraftner\">Thomas Kräftner</a> for his responsible disclosure. The security issues that are resolved in 6.9.4 are:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A PclZip path traversal issue reported independently by <a href=\"https://profiles.wordpress.org/francescocarlucci/\">Francesco Carlucci</a> and <a href=\"https://profiles.wordpress.org/kaminuma/\">kaminuma</a></li>\n\n\n\n<li>An authorization bypass on the Notes feature reported by <a href=\"https://profiles.wordpress.org/kaminuma/\">kaminuma</a></li>\n\n\n\n<li>An XXE in the external getID3 library reported by <a href=\"https://profiles.wordpress.org/regex33/\">Youssef Achtatal</a></li>\n</ul>\n\";s: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:\"20184\";s: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: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:35:\"Your Browser Becomes Your WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/news/2026/03/announcing-my-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 Mar 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:8:\"category\";a:1:{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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=19831\";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:341:\"For nearly two decades, WordPress has been known for a simple, powerful idea: that anyone should be able to get online and start creating with minimal friction. The famous five-minute install captured that spirit for an earlier era of the web. Today, we’re introducing my.WordPress.net, a new take on that idea designed for a new [&#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:\"Brandon Payton\";s: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:15684:\"\n<p class=\"wp-block-paragraph\">For nearly two decades, WordPress has been known for a simple, powerful idea: that anyone should be able to get online and start creating with minimal friction. The famous five-minute install captured that spirit for an earlier era of the web. Today, we’re introducing <strong><a href=\"https://my.wordpress.net/\">my.WordPress.net</a></strong>, a new take on that idea designed for a new generation of creators.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"421\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/02/image1-revised.png?resize=1024%2C421&#038;ssl=1\" alt=\"\" class=\"wp-image-20049\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/02/image1-revised.png?resize=1024%2C421&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/02/image1-revised.png?resize=300%2C123&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/02/image1-revised.png?resize=768%2C316&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/02/image1-revised.png?resize=1536%2C632&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/02/image1-revised.png?w=1999&amp;ssl=1 1999w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">With my.WordPress.net, WordPress runs entirely and persistently in your browser. There’s no sign-up, no hosting plan, and no domain decision standing between you and getting started. Built on <a href=\"https://wordpress.org/playground/\">WordPress Playground</a>, my.WordPress.net takes the same technology that powers instant WordPress demos and turns it into something permanent and personal. This isn’t a temporary environment meant to be discarded. It’s a WordPress that stays with you.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>New Ways to WordPress</strong></h2>\n\n\n\n<p class=\"wp-block-paragraph\">When you open my.WordPress.net, you’re placed directly into a complete WordPress environment that runs entirely in your browser. What makes this approach meaningful is not just where WordPress runs, but how it changes the relationship between people and the software itself. By removing the need to sign up or make early decisions about hosting and visibility, my.WordPress.net reframes WordPress as a space you can enter and work within, rather than a service you have to configure before you begin.</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\">“This takes WordPress from being framed as something that is democratizing publishing to democratizing digital sovereignty.” &#8211; <a href=\"https://profiles.wordpress.org/akirk/\">Alex Kirk</a></p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">Seen through that lens, my.WordPress.net is not just about convenience. As you don’t need to choose a hosting provider, your WordPress belongs entirely to you. In a publishing environment, you’d briefly interact with WordPress as you prepare your next post. In a personal setting, it becomes a place you shape and return to. That change unlocks new ways of thinking about what WordPress can be.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Permanently and Privately Yours</strong></h2>\n\n\n\n<p class=\"wp-block-paragraph\">Because sites on my.WordPress.net are private by default and not accessible from the public internet, they don’t behave like traditional websites. They aren’t optimized for traffic, discovery, or presentation, and they don’t need to be. Instead, WordPress becomes a personal environment where ideas can exist before they are ready to be shared, or where they may never be shared at all.</p>\n\n\n\n<p class=\"wp-block-paragraph\">This changes how WordPress can be used day to day. It becomes a place to think, to draft, to organize, and to experiment without pressure, whether that means writing privately, collecting research, or building small tools for personal use. Learning also fits naturally into this model, since people can explore plugins, themes, and features inside a real WordPress environment where mistakes are expected and recoverable.</p>\n\n\n\n<p class=\"wp-block-paragraph\">This turns WordPress into a personal workspace. It becomes a place for thinking, learning, prototyping, and tinkering, where exploration matters more than outcomes. In that role, WordPress shifts from being something you prepare for others to visit into something you actively work inside, adapting to how you want to create and learn over time.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Sparking Creativity with Apps</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"566\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/02/image4-revised.png?resize=1024%2C566&#038;ssl=1\" alt=\"\" class=\"wp-image-20046\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/02/image4-revised.png?resize=1024%2C566&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/02/image4-revised.png?resize=300%2C166&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/02/image4-revised.png?resize=768%2C425&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/02/image4-revised.png?resize=1536%2C849&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/02/image4-revised.png?w=1999&amp;ssl=1 1999w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">To make these ideas concrete, my.WordPress.net includes an App Catalog with pre-configured experiences designed specifically for personal use, built with <a href=\"https://wordpress.org/plugins/\">WordPress plugins</a>. These examples highlight how WordPress can function when it’s private, persistent, and easy to experiment with. Each app installs with a single click and configures itself automatically.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Personal CRM</strong></h3>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"531\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/02/image2-revised.png?resize=1024%2C531&#038;ssl=1\" alt=\"\" class=\"wp-image-20048\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/02/image2-revised.png?resize=1024%2C531&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/02/image2-revised.png?resize=300%2C155&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/02/image2-revised.png?resize=768%2C398&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/02/image2-revised.png?resize=1536%2C796&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/02/image2-revised.png?w=1999&amp;ssl=1 1999w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">A private relationship manager designed to help you stay in touch with people who matter to you. Contacts can be grouped, enriched with personal details, and paired with reminders to reconnect. In the demo, this extends to analyzing communication patterns using imported chat data, all stored locally inside WordPress.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Personal RSS Reader</strong></h3>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"553\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/02/image7-revised.png?resize=1024%2C553&#038;ssl=1\" alt=\"\" class=\"wp-image-20043\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/02/image7-revised.png?resize=1024%2C553&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/02/image7-revised.png?resize=300%2C162&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/02/image7-revised.png?resize=768%2C415&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/02/image7-revised.png?resize=1536%2C829&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/02/image7-revised.png?w=1999&amp;ssl=1 1999w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Using the <a href=\"https://wordpress.org/plugins/friends/\">Friends plugin</a>, WordPress becomes a quiet, personal feed reader. Instead of relying on external platforms, you can follow sites and creators inside your own WordPress and read at your own pace, free from algorithms or engagement pressure.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>AI Workspace and Knowledge Base</strong></h3>\n\n\n\n<figure data-wp-context=\"{&quot;galleryId&quot;:&quot;69d495e2bd1a6&quot;}\" data-wp-interactive=\"core/gallery\" class=\"wp-block-gallery has-nested-images columns-default wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;69d495e2bd7f8&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"69d495e2bd7f8\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"540\" 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=\"20045\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/02/image5-revised.png?resize=1024%2C540&#038;ssl=1\" alt=\"\" class=\"wp-image-20045\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/02/image5-revised.png?resize=1024%2C540&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/02/image5-revised.png?resize=300%2C158&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/02/image5-revised.png?resize=768%2C405&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/02/image5-revised.png?w=1348&amp;ssl=1 1348w\" 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;69d495e2be183&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"69d495e2be183\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"539\" 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=\"20044\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/02/image6-revised.png?resize=1024%2C539&#038;ssl=1\" alt=\"\" class=\"wp-image-20044\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/02/image6-revised.png?resize=1024%2C539&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/02/image6-revised.png?resize=300%2C158&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/02/image6-revised.png?resize=768%2C404&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/02/image6-revised.png?w=1350&amp;ssl=1 1350w\" 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\">Because my.WordPress.net is powered by WordPress Playground, an AI assistant can safely modify it, empowering you to customize beyond what you&#8217;re used to. Ask it to modify a plugin to your liking, or create an entirely new one, featuring your desired block. Ask it about the data you have stored in your WordPress. The assistant remembers what it touches and makes it easy to share your changes with others. Over time, WordPress itself can become your personal knowledge base that the AI understands and works with.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Zero Barriers</strong></h2>\n\n\n\n<p class=\"wp-block-paragraph\">my.WordPress.net lowers the barrier to getting started with WordPress to almost nothing. It offers a fast, commitment-free way to explore, learn, and build, whether the result is a long-term personal project or something that eventually moves elsewhere. In that sense, it updates the spirit of the <a href=\"https://developer.wordpress.org/advanced-administration/before-install/howto-install/\">five-minute install</a> for a browser-first web.</p>\n\n\n\n<h3 class=\"wp-block-heading\">What you should know</h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Storage starts at roughly 100 MB</li>\n\n\n\n<li>The first launch takes a little longer while WordPress downloads and initializes</li>\n\n\n\n<li>All data stays in your browser and is not uploaded anywhere</li>\n\n\n\n<li>Each device has its own separate installation</li>\n\n\n\n<li>Backups should be downloaded regularly</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Create and explore</strong></h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress has always grown through experimentation. People trying things, breaking things, and discovering new ways to use the platform have shaped what WordPress is today.</p>\n\n\n\n<p class=\"wp-block-paragraph\">my.WordPress.net continues that tradition by making experimentation easier and more personal. It’s an invitation to create without pressure, to explore ideas that may never be published, and to use WordPress in ways that fit your life.</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://my.wordpress.net/\">Start exploring at <strong>my.WordPress.net</strong></a></div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"wp-block-paragraph\"><em><a href=\"https://my.wordpress.net/\">my.WordPress.net</a> is built on WordPress Playground technology. Learn more at <a href=\"https://wordpress.org/playground/\">WordPress.org/playground</a> or join the conversation in the #meta-playground channel on <a href=\"https://make.wordpress.org/chat/\">WordPress Slack</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:\"19831\";s: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:30:\"WordPress 6.9.3 and 7.0 beta 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:66:\"https://wordpress.org/news/2026/03/wordpress-6-9-3-and-7-0-beta-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:\"Tue, 10 Mar 2026 23:41:33 +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: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:14:\"minor-releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i: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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20166\";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:361:\"WordPress 6.9.2 was released earlier today and addressed 10 security issues. A few users have subsequently reported an issue where the front end of their site was appearing blank after updating to 6.9.2. The issue has been narrowed down to some themes using an unusual approach to loading template files via &#8220;stringable objects&#8221; instead of [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"John Blackbourn\";s: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:5985:\"\n<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.org/news/2026/03/wordpress-6-9-2-release/\">WordPress 6.9.2 was released earlier today</a> and addressed 10 security issues.</p>\n\n\n\n<p class=\"wp-block-paragraph\">A few users have subsequently reported an issue where the front end of their site was appearing blank after updating to 6.9.2. The issue has been narrowed down to some themes using an unusual approach to loading template files via &#8220;stringable objects&#8221; instead of primitive strings for file paths.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Although this is is not an officially supported approach to loading template files in WordPress (the <code>template_include</code> filter only accepts a string), it nevertheless caused some sites to break. As a result, the Security Team has decided to address this in a fast follow 6.9.3 release.</p>\n\n\n\n<p class=\"wp-block-paragraph\">As always,<strong> it is recommended that you update your sites to the latest version of WordPress immediately.</strong> This ensures your site is protected by all available security fixes in 6.9.2 and that you will not be affected by the bug fixed in 6.9.3.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Many thanks to those who reported the issue, assisted in narrowing down the problem, and helped with the fix, in particular <a href=\"https://profiles.wordpress.org/josklever/\">Jos Klever</a> who assisted throughout the process.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You can&nbsp;<a href=\"https://wordpress.org/wordpress-6.9.3.zip\">download WordPress 6.9.3 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”. If you have sites that support automatic background updates, the update process will begin shortly. You don&#8217;t have to do a thing!</p>\n\n\n\n<p class=\"wp-block-paragraph\">For more information on WordPress 6.9.3, please visit the&nbsp;<a href=\"https://wordpress.org/documentation/wordpress-version/version-6-9-3/\">version page on the HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 7.0 beta 4</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The next major release of WordPress will be&nbsp;<a href=\"https://make.wordpress.org/core/7-0/\">version 7.0</a>, which is planned for April 9, 2026. The Security Team has decided to package a new beta release (7.0 beta 4) to keep everyone protected from the patched vulnerabilities, including the dedicated members of the community focusing their time and effort on testing the upcoming release.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>This will be an additional beta release in the 7.0 release cycle.</strong> The schedule will remain the same going forward, but with five total beta releases instead of the previously planned four. The next 7.0 beta release is still scheduled for Thursday, March 12th.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>This beta version of the WordPress software is still under development</strong>. Please do not install, run, or test WordPress 7.0 beta versions on production or mission-critical websites. Instead, you should evaluate Beta 4 on a test server and site.</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-beta4.zip\">Beta 4 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-beta</code>4</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 is required – just click and go!&nbsp;</td></tr></tbody></table></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Beta 4 updates and highlights</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 Beta 4 contains the ten security patches shipped in WordPress 6.9.2, and more than 49 updates and fixes since the Beta 3 release, including 14 in the Editor and 35 in Core.&nbsp;</p>\n\n\n\n<p class=\"wp-block-paragraph\">Each beta cycle focuses on bug fixes. More are on the way, thanks to your help with testing. You can browse the technical details for all issues addressed since Beta 3 at these links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/compare/f4d8a5803aa2fbe26e7d9af4d17e80a622b7bab8...9b8144036fa5faf75de43d4502ff9809fcf689ad\">GitHub commits for 7.0 </a>&nbsp;since March 5, 2026</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=03%2F05%2F2026..03%2F10%2F2026&amp;milestone=7.0&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Closed Trac tickets for 7.0</a> since March 5, 2026</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">As always, a successful release depends on your confirmation during testing. So please download and test!</p>\n\n\n\n<p class=\"has-text-align-right wp-block-paragraph\"><em>Props <a href=\'https://profiles.wordpress.org/peterwilson/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>peterwilson</a>, <a href=\'https://profiles.wordpress.org/desrosj/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>desrosj</a>, <a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a>, <a href=\'https://profiles.wordpress.org/amykamala/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>amykamala</a> for peer reviewing.</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:\"20166\";s: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:23:\"WordPress 6.9.2 Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/news/2026/03/wordpress-6-9-2-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 Mar 2026 15:43: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: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: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:14:\"minor-releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i: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=20142\";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:375:\"WordPress 6.9.2 is now available This is a security release that features several fixes. Because this is a security release, it is recommended that you update your sites immediately. You can download WordPress 6.9.2 from WordPress.org, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”. If you have sites that support automatic [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"John Blackbourn\";s: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:4551:\"\n<h2 class=\"wp-block-heading\">WordPress 6.9.2 is now available</h2>\n\n\n\n<p class=\"wp-block-paragraph\">This is a security release that features several fixes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because this is a security release,<strong> it is recommended that you update your sites immediately</strong>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You can <a href=\"https://wordpress.org/wordpress-6.9.2.zip\">download WordPress 6.9.2 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”. If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p class=\"wp-block-paragraph\">For more information on WordPress 6.9.2, please visit the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-9-2/\">version page on the HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Security updates included in this release</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The security team would like to thank the following people for <a href=\"https://hackerone.com/wordpress?type=team\">responsibly reporting vulnerabilities</a>, and allowing them to be fixed in this release:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A Blind SSRF issue reported by <a href=\"https://hackerone.com/sibwtf\">sibwtf</a>, and subsequently by several other researchers while the fix was being worked on</li>\n\n\n\n<li>A PoP-chain weakness in the HTML API and Block Registry reported by <a href=\"https://github.com/hackerlo2003\">Phat RiO</a></li>\n\n\n\n<li>A regex DoS weakness in numeric character references reported by Dennis Snell of the WordPress Security Team</li>\n\n\n\n<li>A stored XSS in nav menus reported by <a href=\"https://x.com/Savphill\">Phill Savage</a></li>\n\n\n\n<li>An AJAX <code>query-attachments</code> authorization bypass reported by <a href=\"https://www.vitalysim.com/\">Vitaly Simonovich</a></li>\n\n\n\n<li>A stored XSS via the <code>data-wp-bind</code> directive reported by <a href=\"https://profiles.wordpress.org/kaminuma/\">kaminuma</a></li>\n\n\n\n<li>An XSS that allows overridding client-side templates in the admin area reported by <a href=\"https://hackerone.com/amosec\">Asaf Mozes</a></li>\n\n\n\n<li>A PclZip path traversal issue reported independently by <a href=\"https://profiles.wordpress.org/francescocarlucci/\">Francesco Carlucci</a> and <a href=\"https://profiles.wordpress.org/kaminuma/\">kaminuma</a></li>\n\n\n\n<li>An authorization bypass on the Notes feature reported by <a href=\"https://profiles.wordpress.org/kaminuma/\">kaminuma</a></li>\n\n\n\n<li>An XXE in the external getID3 library reported by <a href=\"https://profiles.wordpress.org/regex33/\">Youssef Achtatal</a></li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">The WordPress security team have worked with the maintainer of the external getID3 library, James Heinrich, to coordinate a fix to getID3. A new version of getID3 <a href=\"https://github.com/JamesHeinrich/getID3/releases\">is available here</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">As a courtesy, these fixes are being backported, where necessary, to all branches eligible to receive security fixes (currently through 4.7). As a reminder, <strong>only the most recent version of WordPress is actively supported</strong>. The backports are in progress and will ship as they become ready.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p class=\"wp-block-paragraph\">This release was led by <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>. In addition to the security researchers mentioned above, WordPress 6.9.2 would not have been possible without the contributions of the following people: <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/xknown/\" data-type=\"link\" data-id=\"https://profiles.wordpress.org/johnbillion/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/jonsurrell/\">Jon Surrell</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/luisherranz/\">Luis Herranz</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, and <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>.</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:\"20142\";s: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: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:20:\"WordPress 7.0 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2026/03/wordpress-7-0-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 Mar 2026 14:47: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:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"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:4:\"beta\";s: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:\"release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20098\";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:344:\"WordPress 7.0 Beta 3 is available for download and testing! This beta version of the WordPress software is still under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, you should evaluate Beta 3 on a test server and site.WordPress 7.0 Beta 3 can be tested [&#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:5895:\"\n<p class=\"wp-block-paragraph\">WordPress 7.0 Beta 3 is available for download and testing!</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>This beta version of the WordPress software is still under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, you should evaluate Beta 3 on a test server and site.WordPress 7.0 Beta 3 can be tested using any of the following methods:</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-beta3.zip\">Beta 3 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-beta</code>3</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 is 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>April 9, 2026</strong>. &nbsp;The full <a href=\"https://make.wordpress.org/core/2026/02/12/wordpress-7-0-release-party-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. 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. Thank you to everyone who is contributing with testing!</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Catch up on what’s new in WordPress 7.0</strong>: Read the <a href=\"https://wordpress.org/news/2026/02/wordpress-7-0-beta-2/\">Beta 2 announcement</a> for details and highlights.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to test this release</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Your help testing the WordPress 7.0 Beta 3 version is key to ensuring everything in the release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important. 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.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you encounter an 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>.Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Beta 3 updates and highlights</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 Beta 3 contains more than 148 updates and fixes since the Beta 2 release, including 70 in the Editor and 78 in Core. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Each beta cycle focuses on bug fixes, and more are on the way with your help through testing. You can browse the technical details for all issues addressed since Beta 2 using these links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/7.0?since=2026-02-26&amp;until=2026-03-05\">GitHub commits for 7.0 </a>&nbsp;since February 26, 2026</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=02%2F26%2F2026..03%2F05%2F2026&amp;milestone=7.0&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Closed Trac tickets for 7.0</a> since February 26, 2026</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">Tapping into the power of AI is even easier in Beta 3! The WP AI Client Connectors screen now dynamically registers providers from the WP AI Client registry, in addition to the 3 default providers, giving users more flexibility and command over AI integrations.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A Beta 3 haiku</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Through sun set and rise,</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beta 3 takes off and flies.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Seven soon arrives.</em></p>\n\n\n\n<p class=\"has-text-align-right wp-block-paragraph\"><em>Props to <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a></em>, <em><a href=\'https://profiles.wordpress.org/jeffpaul/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jeffpaul</a></em>, <em><a href=\'https://profiles.wordpress.org/chaion07/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chaion07</a></em>,<em> <a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a> and <a href=\'https://profiles.wordpress.org/valentingrenier/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>valentingrenier</a> 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:\"20098\";s: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:\"Tue, 07 Apr 2026 05:43:00 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:\"Thu, 02 Apr 2026 16:10:35 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:4:\"gzip\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}s:5:\"build\";i:1775376324;s:21:\"cache_expiration_time\";i:1775583780;s:23:\"__cache_expiration_time\";i:1775583780;}', 'off');
INSERT INTO `wpd_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(656, 'db_upgraded', '', 'on'),
(1068, '_site_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1775583780', 'off'),
(1069, '_site_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1775540580', 'off'),
(1070, '_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b', '1775583780', 'off'),
(1071, '_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b', '<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2026/04/wcasia-2026-sessions/\'>From AI to Open Source at WordCamp Asia 2026</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2026/03/wordpress-7-0-release-candidate-2/\'>WordPress 7.0 Release Candidate 2</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://ma.tt/2026/04/theopensource/\'>Matt: TheOpenSource</a></li><li><a class=\'rsswidget\' href=\'https://openchannels.fm/finding-balance-the-importance-of-downtime-at-conferences/\'>Open Channels FM: Finding Balance: The Importance of Downtime at Conferences</a></li><li><a class=\'rsswidget\' href=\'https://ma.tt/2026/04/easter-thoughts/\'>Matt: Easter Thoughts</a></li></ul></div>', 'off'),
(1271, '_transient_timeout_elementor_unread_notifications_1', '1775564747', 'off'),
(1272, '_transient_elementor_unread_notifications_1', 'a:15:{i:0;s:11:\"4.0-default\";i:1;s:16:\"4.0-atomic-forms\";i:2;s:16:\"4.0-interactions\";i:3;s:22:\"4.0-sync-design-system\";i:4;s:12:\"angie-launch\";i:5;s:15:\"partner-program\";i:6;s:13:\"manage-launch\";i:7;s:15:\"components-3.35\";i:8;s:10:\"one-launch\";i:9;s:16:\"atomic-tabs-3.34\";i:10;s:22:\"variables-manager-3.33\";i:11;s:14:\"ally-assistant\";i:12;s:20:\"image-optimizer-3.19\";i:13;s:20:\"5-star-rating-prompt\";i:14;s:23:\"site-mailer-introducing\";}', 'off');
INSERT INTO `wpd_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1113, 'astra_partials_config_cache', 'a:2:{s:8:\"settings\";a:1114:{s:46:\"section-header-builder-layout-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[cloned-component-track]\";a:4:{s:7:\"default\";a:12:{s:13:\"header-button\";i:2;s:13:\"footer-button\";i:2;s:11:\"header-html\";i:2;s:11:\"footer-html\";i:2;s:11:\"header-menu\";i:2;s:13:\"header-widget\";i:4;s:13:\"footer-widget\";i:4;s:19:\"header-social-icons\";i:1;s:19:\"footer-social-icons\";i:1;s:14:\"header-divider\";i:0;s:14:\"footer-divider\";i:0;s:13:\"removed-items\";a:0:{}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[builder-header]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[header-desktop-items]\";a:4:{s:7:\"default\";a:4:{s:5:\"popup\";a:1:{s:13:\"popup_content\";a:1:{i:0;s:11:\"mobile-menu\";}}s:5:\"above\";a:5:{s:10:\"above_left\";a:0:{}s:17:\"above_left_center\";a:0:{}s:12:\"above_center\";a:0:{}s:18:\"above_right_center\";a:0:{}s:11:\"above_right\";a:0:{}}s:7:\"primary\";a:5:{s:12:\"primary_left\";a:1:{i:0;s:4:\"logo\";}s:19:\"primary_left_center\";a:0:{}s:14:\"primary_center\";a:0:{}s:20:\"primary_right_center\";a:0:{}s:13:\"primary_right\";a:1:{i:0;s:6:\"menu-1\";}}s:5:\"below\";a:5:{s:10:\"below_left\";a:0:{}s:17:\"below_left_center\";a:0:{}s:12:\"below_center\";a:0:{}s:18:\"below_right_center\";a:0:{}s:11:\"below_right\";a:0:{}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-preset-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-desktop-draggable-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-mobile-items]\";a:4:{s:7:\"default\";a:4:{s:5:\"popup\";a:1:{s:13:\"popup_content\";a:1:{i:0;s:11:\"mobile-menu\";}}s:5:\"above\";a:3:{s:10:\"above_left\";a:0:{}s:12:\"above_center\";a:0:{}s:11:\"above_right\";a:0:{}}s:7:\"primary\";a:3:{s:12:\"primary_left\";a:1:{i:0;s:4:\"logo\";}s:14:\"primary_center\";a:0:{}s:13:\"primary_right\";a:1:{i:0;s:14:\"mobile-trigger\";}}s:5:\"below\";a:3:{s:10:\"below_left\";a:0:{}s:12:\"below_center\";a:0:{}s:11:\"below_right\";a:0:{}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-mobile-draggable-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-mobile-popup-items]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-transparent-link-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-transparant-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hb-header-main-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-header-builder-layout-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[header-builder-pro-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[button-preset-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[theme-button-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[theme-button-bg-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[theme-button-border-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[theme-button-border-group-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:56:\"astra-settings[theme-button-border-group-border-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:28:\"astra-settings[button-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[button-h-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:31:\"astra-settings[button-bg-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-0)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[button-bg-h-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-1)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[theme-button-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:2:\"13\";s:5:\"right\";s:2:\"37\";s:6:\"bottom\";s:2:\"13\";s:4:\"left\";s:2:\"37\";}s:6:\"tablet\";a:4:{s:3:\"top\";i:14;s:5:\"right\";i:28;s:6:\"bottom\";i:14;s:4:\"left\";i:28;}s:6:\"mobile\";a:4:{s:3:\"top\";i:12;s:5:\"right\";i:24;s:6:\"bottom\";i:12;s:4:\"left\";i:24;}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:53:\"astra-settings[theme-button-border-group-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[button-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[secondary-button-preset-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[secondary-theme-button-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[secondary-theme-button-bg-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[secondary-theme-button-border-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[secondary-theme-button-border-group-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:66:\"astra-settings[secondary-theme-button-border-group-border-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:38:\"astra-settings[secondary-button-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[secondary-button-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[secondary-button-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[secondary-button-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[secondary-theme-button-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:13;s:5:\"right\";i:30;s:6:\"bottom\";i:13;s:4:\"left\";i:30;}s:6:\"tablet\";a:4:{s:3:\"top\";i:12;s:5:\"right\";i:28;s:6:\"bottom\";i:12;s:4:\"left\";i:28;}s:6:\"mobile\";a:4:{s:3:\"top\";i:10;s:5:\"right\";i:24;s:6:\"bottom\";i:10;s:4:\"left\";i:24;}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:63:\"astra-settings[secondary-theme-button-border-group-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:2;s:5:\"right\";i:2;s:6:\"bottom\";i:2;s:4:\"left\";i:2;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[secondary-button-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:34:\"section-secondary-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[site-content-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[narrow-container-max-width]\";a:4:{s:7:\"default\";i:750;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[different-retina-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[ast-header-retina-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:37:\"astra-settings[different-mobile-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[mobile-header-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:33:\"astra-settings[use-logo-svg-icon]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[logo-svg-icon]\";a:4:{s:7:\"default\";a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:22:\"sanitize_logo_svg_icon\";}}s:39:\"astra-settings[logo-svg-site-title-gap]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:1:\"5\";s:6:\"tablet\";s:1:\"5\";s:6:\"mobile\";s:1:\"5\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[ast-header-responsive-logo-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[display-site-title-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[display-site-tagline-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:0;s:6:\"tablet\";i:0;s:6:\"mobile\";i:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[logo-title-inline]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[site-identity-title-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-color-site-title]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[logo-svg-icon-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[logo-svg-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[logo-svg-icon-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-color-h-site-title]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-color-site-tagline]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[site-icon-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:26:\"astra-settings[blog-width]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[blog-max-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[blog-post-content]\";a:4:{s:7:\"default\";s:7:\"excerpt\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[blog-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:27:\"astra-settings[blog-layout]\";a:4:{s:7:\"default\";s:13:\"blog-layout-4\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[blog-post-per-page]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[archive-post-content-structure-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[blog-post-structure]\";a:4:{s:7:\"default\";a:5:{i:0;s:5:\"image\";i:1;s:8:\"category\";i:2;s:5:\"title\";i:3;s:10:\"title-meta\";i:4;s:7:\"excerpt\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[blog-meta-date-type]\";a:4:{s:7:\"default\";s:9:\"published\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[blog-meta-date-format]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[blog-image-ratio-type]\";a:4:{s:7:\"default\";s:10:\"predefined\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[blog-image-ratio-pre-scale]\";a:4:{s:7:\"default\";s:4:\"16/9\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[blog-image-custom-scale-width]\";a:4:{s:7:\"default\";i:16;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:46:\"astra-settings[blog-image-custom-scale-height]\";a:4:{s:7:\"default\";i:9;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[blog-custom-image-scale-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[blog-hover-effect]\";a:4:{s:7:\"default\";s:7:\"zoom-in\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:31:\"astra-settings[blog-image-size]\";a:4:{s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[blog-post-color-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[post-card-background-overlay]\";a:4:{s:7:\"default\";a:2:{s:15:\"background-type\";s:0:\"\";s:16:\"background-color\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[post-card-border-radius]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:6;s:5:\"right\";i:6;s:6:\"bottom\";i:6;s:4:\"left\";i:6;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[blog-category-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[blog-tag-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[blog-post-meta-divider-type]\";a:4:{s:7:\"default\";s:1:\"/\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[blog-meta-category-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[blog-meta-tag-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:29:\"section-blog-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:25:\"astra-settings[blog-meta]\";a:4:{s:7:\"default\";a:2:{i:0;s:6:\"author\";i:1;s:4:\"date\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[blog-single-width]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[blog-single-max-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[single-content-images-shadow]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[section-blog-single-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[single-post-outside-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[single-post-inside-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:36:\"section-blog-single-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[site-sidebar-layout]\";a:4:{s:7:\"default\";s:10:\"no-sidebar\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[site-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"unboxed\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[site-sidebar-width]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[site-sidebar-width-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:35:\"astra-settings[site-sticky-sidebar]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-sidebar-pro-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[ast-site-content-layout]\";a:4:{s:7:\"default\";s:22:\"normal-width-container\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[site-content-style]\";a:4:{s:7:\"default\";s:5:\"boxed\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[surface-colors-title]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[site-layout-outside-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-5)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[content-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[ast-site-layout-button-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[global-color-palette]\";a:4:{s:7:\"default\";a:2:{s:7:\"palette\";a:9:{i:0;s:7:\"#0b6623\";i:1;s:7:\"#d2b48c\";i:2;s:7:\"#08203e\";i:3;s:7:\"#656565\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#f5f5dc\";i:6;s:7:\"#111111\";i:7;s:7:\"#D1D5DB\";i:8;s:7:\"#111111\";}s:4:\"flag\";b:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:20:\"astra-color-palettes\";a:4:{s:7:\"default\";a:5:{s:14:\"currentPalette\";s:9:\"palette_1\";s:8:\"palettes\";a:4:{s:9:\"palette_1\";a:9:{i:0;s:7:\"#0b6623\";i:1;s:7:\"#d2b48c\";i:2;s:7:\"#08203e\";i:3;s:7:\"#656565\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#f5f5dc\";i:6;s:7:\"#111111\";i:7;s:7:\"#D1D5DB\";i:8;s:7:\"#111111\";}s:9:\"palette_2\";a:9:{i:0;s:7:\"#0067FF\";i:1;s:7:\"#005EE9\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#364151\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#E7F6FF\";i:6;s:7:\"#070614\";i:7;s:7:\"#D1DAE5\";i:8;s:7:\"#222222\";}s:9:\"palette_3\";a:9:{i:0;s:7:\"#6528F7\";i:1;s:7:\"#5511F8\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F2F0FE\";i:6;s:7:\"#0D0614\";i:7;s:7:\"#D8D8F5\";i:8;s:7:\"#222222\";}s:9:\"palette_4\";a:9:{i:0;s:7:\"#0085FF\";i:1;s:7:\"#0177E3\";i:2;s:7:\"#FFFFFF\";i:3;s:7:\"#E7F6FF\";i:4;s:7:\"#212A37\";i:5;s:7:\"#0F172A\";i:6;s:7:\"#4F5B62\";i:7;s:7:\"#070614\";i:8;s:7:\"#222222\";}}s:7:\"presets\";a:11:{s:3:\"Oak\";a:9:{i:0;s:7:\"#0067FF\";i:1;s:7:\"#005EE9\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#364151\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#E7F6FF\";i:6;s:7:\"#070614\";i:7;s:7:\"#D1DAE5\";i:8;s:7:\"#222222\";}s:5:\"Viola\";a:9:{i:0;s:7:\"#6528F7\";i:1;s:7:\"#5511F8\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F2F0FE\";i:6;s:7:\"#0D0614\";i:7;s:7:\"#D8D8F5\";i:8;s:7:\"#222222\";}s:5:\"Cedar\";a:9:{i:0;s:7:\"#DD183B\";i:1;s:7:\"#CC1939\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#3A3A3A\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FFEDE6\";i:6;s:7:\"#140609\";i:7;s:7:\"#FFD1BF\";i:8;s:7:\"#222222\";}s:6:\"Willow\";a:9:{i:0;s:7:\"#54B435\";i:1;s:7:\"#379237\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#2F3B40\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#EDFBE2\";i:6;s:7:\"#0C1406\";i:7;s:7:\"#D5EAD8\";i:8;s:7:\"#222222\";}s:4:\"Lily\";a:9:{i:0;s:7:\"#DCA54A\";i:1;s:7:\"#D09A40\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#4A4A4A\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FAF5E5\";i:6;s:7:\"#141004\";i:7;s:7:\"#F0E6C5\";i:8;s:7:\"#222222\";}s:4:\"Rose\";a:9:{i:0;s:7:\"#FB5FAB\";i:1;s:7:\"#EA559D\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FCEEF5\";i:6;s:7:\"#140610\";i:7;s:7:\"#FAD8E9\";i:8;s:7:\"#222222\";}s:4:\"Sage\";a:9:{i:0;s:7:\"#1B9C85\";i:1;s:7:\"#178E79\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#EDF6EE\";i:6;s:7:\"#06140C\";i:7;s:7:\"#D4F3D7\";i:8;s:7:\"#222222\";}s:5:\"Flare\";a:9:{i:0;s:7:\"#FD9800\";i:1;s:7:\"#E98C00\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FEF9E1\";i:6;s:7:\"#141006\";i:7;s:7:\"#F9F0C8\";i:8;s:7:\"#222222\";}s:5:\"Maple\";a:9:{i:0;s:7:\"#FF6210\";i:1;s:7:\"#F15808\";i:2;s:7:\"#1C0D0A\";i:3;s:7:\"#353535\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FEF1E4\";i:6;s:7:\"#140B06\";i:7;s:7:\"#E5D7D1\";i:8;s:7:\"#222222\";}s:5:\"Birch\";a:9:{i:0;s:7:\"#737880\";i:1;s:7:\"#65696F\";i:2;s:7:\"#151616\";i:3;s:7:\"#393C40\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F6F6F6\";i:6;s:7:\"#232529\";i:7;s:7:\"#F1F0F0\";i:8;s:7:\"#222222\";}s:4:\"Dark\";a:9:{i:0;s:7:\"#0085FF\";i:1;s:7:\"#0177E3\";i:2;s:7:\"#FFFFFF\";i:3;s:7:\"#E7F6FF\";i:4;s:7:\"#212A37\";i:5;s:7:\"#0F172A\";i:6;s:7:\"#4F5B62\";i:7;s:7:\"#070614\";i:8;s:7:\"#222222\";}}s:11:\"presetNames\";a:4:{s:9:\"palette_1\";N;s:9:\"palette_2\";s:3:\"Oak\";s:9:\"palette_3\";s:5:\"Viola\";s:9:\"palette_4\";s:4:\"Dark\";}s:4:\"flag\";b:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[theme-color-divider-reset]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:27:\"astra-settings[theme-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-0)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[base-link-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:26:\"astra-settings[link-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-0)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[link-h-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-1)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:26:\"astra-settings[text-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-3)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[border-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-7)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[ast-blog-pro-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[font-size-page-title]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:20;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[font-size-post-meta]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:13;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[font-size-post-tax]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:14;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[ast-body-font-settings-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[ast-body-font-settings]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[body-font-family]\";a:4:{s:7:\"default\";s:18:\"\'Lato\', sans-serif\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:33:\"astra-settings[body-font-variant]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:21:\"sanitize_font_variant\";}}s:32:\"astra-settings[body-font-weight]\";a:4:{s:7:\"default\";s:3:\"400\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:30:\"astra-settings[font-size-body]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:16;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[body-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:4:\"1.65\";s:16:\"line-height-unit\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[ast-headings-font-settings]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[ast-headings-font-settings-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[headings-font-family]\";a:4:{s:7:\"default\";s:25:\"\'Playfair Display\', serif\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:36:\"astra-settings[headings-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:37:\"astra-settings[headings-font-variant]\";a:4:{s:7:\"default\";s:11:\"400,600,800\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:21:\"sanitize_font_variant\";}}s:36:\"astra-settings[headings-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[para-margin-bottom]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[underline-content-links]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h1-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h2-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h3-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h4-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h5-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h6-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[wp-blocks-ui]\";a:4:{s:7:\"default\";s:7:\"comfort\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[wp-blocks-global-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[wp-blocks-ui-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:33:\"comments-section-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[comments-single-section-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[enable-comments-area]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[comments-box-placement]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[comments-box-container-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[comment-form-position]\";a:4:{s:7:\"default\";s:5:\"below\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-sub-section-comments-border-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-sub-section-comments-border-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-sub-section-comments-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:54:\"astra-settings[ast-sub-section-comments-border-radius]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[ast-sub-section-comments-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[ast-sub-section-comments-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";i:2;s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:47:\"astra-settings[ast-sub-section-comments-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:2;s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:30:\"astra-settings[font-family-h1]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h1]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:43;s:6:\"tablet\";i:30;s:6:\"mobile\";i:30;s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h1]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.4\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h2]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h2]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h2]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:35;s:6:\"tablet\";i:25;s:6:\"mobile\";i:25;s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h2]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.3\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h3]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h3]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h3]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:29;s:6:\"tablet\";i:20;s:6:\"mobile\";i:20;s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h3]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.3\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h4]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h4]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h4]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:25;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h4]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.2\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h5]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h5]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h5]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:21;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h5]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.2\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h6]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h6]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h6]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:17;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h6]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:4:\"1.25\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-single-post-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:24:\"astra-typography-presets\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[enable-scroll-to-id]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[site-accessibility-toggle]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[site-accessibility-highlight-type]\";a:4:{s:7:\"default\";s:6:\"dotted\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[site-accessibility-highlight-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[site-accessibility-highlight-input-type]\";a:4:{s:7:\"default\";s:7:\"disable\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[site-accessibility-highlight-input-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[astra-pro-section-notice]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[single-e-floating-buttons-ast-content-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[single-e-floating-buttons-content-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[single-e-floating-buttons-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[single-e-floating-buttons-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[page-single-width]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[page-single-max-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"ast-dynamic-single-e-floating-buttons-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[ast-single-e-floating-buttons-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[ast-dynamic-single-e-floating-buttons-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-e-floating-buttons-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:43:\"ast-dynamic-single-e-floating-buttons-title\";i:1;s:42:\"ast-dynamic-single-e-floating-buttons-meta\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:94:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-position-layout-1]\";a:4:{s:7:\"default\";s:6:\"behind\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:94:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-position-layout-2]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:87:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-width-type]\";a:4:{s:7:\"default\";s:4:\"wide\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:87:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-ratio-type]\";a:4:{s:7:\"default\";s:10:\"predefined\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:92:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-ratio-pre-scale]\";a:4:{s:7:\"default\";s:4:\"16/9\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:95:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-custom-scale-width]\";a:4:{s:7:\"default\";i:16;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:96:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-custom-scale-height]\";a:4:{s:7:\"default\";i:9;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:101:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-custom-scale-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:81:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-size]\";a:4:{s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:77:\"astra-settings[ast-dynamic-single-e-floating-buttons-remove-featured-padding]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:76:\"astra-settings[ast-dynamic-single-e-floating-buttons-featured-as-background]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:77:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-featured-overlay]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:76:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-clone-tracker]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-e-floating-buttons-structural-taxonomy]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:79:\"astra-settings[ast-dynamic-single-e-floating-buttons-structural-taxonomy-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[ast-dynamic-single-e-floating-buttons-metadata]\";a:4:{s:7:\"default\";a:3:{i:0;s:8:\"comments\";i:1;s:6:\"author\";i:2;s:4:\"date\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-e-floating-buttons-author-prefix-label]\";a:4:{s:7:\"default\";s:3:\"By \";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-single-e-floating-buttons-author-avatar]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-single-e-floating-buttons-author-avatar-size]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-e-floating-buttons-meta-date-type]\";a:4:{s:7:\"default\";s:9:\"published\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[ast-dynamic-single-e-floating-buttons-date-format]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-single-e-floating-buttons-metadata-separator]\";a:4:{s:7:\"default\";s:1:\"/\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:74:\"astra-settings[ast-dynamic-single-e-floating-buttons-horizontal-alignment]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-single-e-floating-buttons-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:66:\"astra-settings[ast-dynamic-single-e-floating-buttons-elements-gap]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-background]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:77:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:83:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:82:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:68:\"astra-settings[ast-dynamic-single-e-floating-buttons-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:69:\"astra-settings[ast-dynamic-single-e-floating-buttons-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"32\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:82:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-meta-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-meta-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-meta-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:68:\"astra-settings[ast-dynamic-single-e-floating-buttons-meta-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-meta-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:68:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:61:\"ast-dynamic-single-e-floating-buttons-parent-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[single-posttype-e-floating-buttons-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[single-posttype-e-floating-buttons-padding]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:57:\"astra-settings[single-posttype-e-floating-buttons-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:62:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-1]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-1-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-2]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-2-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[single-post-ast-content-layout]\";a:4:{s:7:\"default\";s:22:\"narrow-width-container\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[single-post-content-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[single-post-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[single-post-sidebar-style]\";a:4:{s:7:\"default\";s:5:\"boxed\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"ast-dynamic-single-post-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-single-post-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[ast-dynamic-single-post-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-post-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[ast-dynamic-single-post-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:29:\"ast-dynamic-single-post-title\";i:1;s:28:\"ast-dynamic-single-post-meta\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:80:\"astra-settings[ast-dynamic-single-post-article-featured-image-position-layout-1]\";a:4:{s:7:\"default\";s:6:\"behind\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:80:\"astra-settings[ast-dynamic-single-post-article-featured-image-position-layout-2]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-post-article-featured-image-width-type]\";a:4:{s:7:\"default\";s:4:\"wide\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-post-article-featured-image-ratio-type]\";a:4:{s:7:\"default\";s:10:\"predefined\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:78:\"astra-settings[ast-dynamic-single-post-article-featured-image-ratio-pre-scale]\";a:4:{s:7:\"default\";s:4:\"16/9\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:81:\"astra-settings[ast-dynamic-single-post-article-featured-image-custom-scale-width]\";a:4:{s:7:\"default\";i:16;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:82:\"astra-settings[ast-dynamic-single-post-article-featured-image-custom-scale-height]\";a:4:{s:7:\"default\";i:9;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:87:\"astra-settings[ast-dynamic-single-post-article-featured-image-custom-scale-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-single-post-article-featured-image-size]\";a:4:{s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-post-remove-featured-padding]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[ast-dynamic-single-post-featured-as-background]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-post-banner-featured-overlay]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[ast-dynamic-single-post-taxonomy-clone-tracker]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-post-structural-taxonomy]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[ast-dynamic-single-post-structural-taxonomy-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[ast-dynamic-single-post-metadata]\";a:4:{s:7:\"default\";a:2:{i:0;s:6:\"author\";i:1;s:4:\"date\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-post-author-prefix-label]\";a:4:{s:7:\"default\";s:3:\"By \";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-post-author-avatar]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-post-author-avatar-size]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-dynamic-single-post-meta-date-type]\";a:4:{s:7:\"default\";s:9:\"published\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[ast-dynamic-single-post-date-format]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-post-metadata-separator]\";a:4:{s:7:\"default\";s:1:\"/\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[ast-dynamic-single-post-horizontal-alignment]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-post-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-post-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[ast-dynamic-single-post-elements-gap]\";a:4:{s:7:\"default\";i:15;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-banner-background]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-post-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-post-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:69:\"astra-settings[ast-dynamic-single-post-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-post-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:56:\"astra-settings[ast-dynamic-single-post-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:54:\"astra-settings[ast-dynamic-single-post-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:57:\"astra-settings[ast-dynamic-single-post-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:55:\"astra-settings[ast-dynamic-single-post-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"32\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-post-banner-meta-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-meta-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:56:\"astra-settings[ast-dynamic-single-post-meta-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:54:\"astra-settings[ast-dynamic-single-post-meta-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:13;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-meta-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-post-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:54:\"astra-settings[ast-dynamic-single-post-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[ast-dynamic-single-post-taxonomy]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-dynamic-single-post-taxonomy-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[ast-dynamic-single-post-taxonomy-1]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-taxonomy-1-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[ast-dynamic-single-post-taxonomy-2]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-taxonomy-2-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[single-page-ast-content-layout]\";a:4:{s:7:\"default\";s:22:\"normal-width-container\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[single-page-content-style]\";a:4:{s:7:\"default\";s:7:\"unboxed\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[single-page-sidebar-layout]\";a:4:{s:7:\"default\";s:10:\"no-sidebar\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[single-page-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"unboxed\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"ast-dynamic-single-page-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-single-page-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[ast-dynamic-single-page-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-page-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[ast-dynamic-single-page-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:29:\"ast-dynamic-single-page-image\";i:1;s:29:\"ast-dynamic-single-page-title\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:80:\"astra-settings[ast-dynamic-single-page-article-featured-image-position-layout-1]\";a:4:{s:7:\"default\";s:6:\"behind\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:80:\"astra-settings[ast-dynamic-single-page-article-featured-image-position-layout-2]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-page-article-featured-image-width-type]\";a:4:{s:7:\"default\";s:4:\"wide\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-page-article-featured-image-ratio-type]\";a:4:{s:7:\"default\";s:10:\"predefined\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:78:\"astra-settings[ast-dynamic-single-page-article-featured-image-ratio-pre-scale]\";a:4:{s:7:\"default\";s:4:\"16/9\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:81:\"astra-settings[ast-dynamic-single-page-article-featured-image-custom-scale-width]\";a:4:{s:7:\"default\";i:16;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:82:\"astra-settings[ast-dynamic-single-page-article-featured-image-custom-scale-height]\";a:4:{s:7:\"default\";i:9;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:87:\"astra-settings[ast-dynamic-single-page-article-featured-image-custom-scale-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-single-page-article-featured-image-size]\";a:4:{s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-page-remove-featured-padding]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[ast-dynamic-single-page-featured-as-background]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-page-banner-featured-overlay]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[ast-dynamic-single-page-taxonomy-clone-tracker]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-page-structural-taxonomy]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[ast-dynamic-single-page-structural-taxonomy-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[ast-dynamic-single-page-metadata]\";a:4:{s:7:\"default\";a:3:{i:0;s:8:\"comments\";i:1;s:6:\"author\";i:2;s:4:\"date\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-page-author-prefix-label]\";a:4:{s:7:\"default\";s:3:\"By \";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-page-author-avatar]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-page-author-avatar-size]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-dynamic-single-page-meta-date-type]\";a:4:{s:7:\"default\";s:9:\"published\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[ast-dynamic-single-page-date-format]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-page-metadata-separator]\";a:4:{s:7:\"default\";s:1:\"/\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[ast-dynamic-single-page-horizontal-alignment]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-page-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-page-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[ast-dynamic-single-page-elements-gap]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-banner-background]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-page-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-page-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:69:\"astra-settings[ast-dynamic-single-page-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-page-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-page-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:56:\"astra-settings[ast-dynamic-single-page-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:54:\"astra-settings[ast-dynamic-single-page-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-page-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:57:\"astra-settings[ast-dynamic-single-page-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:55:\"astra-settings[ast-dynamic-single-page-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"32\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-page-banner-meta-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-page-meta-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:56:\"astra-settings[ast-dynamic-single-page-meta-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:54:\"astra-settings[ast-dynamic-single-page-meta-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-page-meta-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-page-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:54:\"astra-settings[ast-dynamic-single-page-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:76:\"astra-settings[ast-dynamic-single-page-disable-structure-meta-on-front-page]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"ast-dynamic-single-page-parent-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[section-single-page-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[section-single-page-padding]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[section-single-page-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:61:\"astra-settings[archive-e-floating-buttons-ast-content-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[archive-e-floating-buttons-content-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[archive-e-floating-buttons-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[archive-e-floating-buttons-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"ast-dynamic-archive-e-floating-buttons-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[ast-archive-e-floating-buttons-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[ast-dynamic-archive-e-floating-buttons-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:74:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[ast-dynamic-archive-e-floating-buttons-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:44:\"ast-dynamic-archive-e-floating-buttons-title\";i:1;s:50:\"ast-dynamic-archive-e-floating-buttons-description\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-archive-e-floating-buttons-custom-title]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[ast-dynamic-archive-e-floating-buttons-custom-title-support]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-archive-e-floating-buttons-custom-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:81:\"astra-settings[ast-dynamic-archive-e-floating-buttons-custom-description-support]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[ast-dynamic-archive-e-floating-buttons-horizontal-alignment]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-archive-e-floating-buttons-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-archive-e-floating-buttons-elements-gap]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-image-type]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-custom-bg]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:78:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:84:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:83:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-archive-e-floating-buttons-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:71:\"astra-settings[ast-dynamic-archive-e-floating-buttons-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:69:\"astra-settings[ast-dynamic-archive-e-floating-buttons-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-archive-e-floating-buttons-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:70:\"astra-settings[ast-dynamic-archive-e-floating-buttons-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"32\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:69:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:47:\"astra-settings[archive-post-ast-content-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[archive-post-content-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[archive-post-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[archive-post-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"ast-dynamic-archive-post-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[ast-archive-post-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[ast-dynamic-archive-post-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[ast-dynamic-archive-post-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[ast-dynamic-archive-post-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:30:\"ast-dynamic-archive-post-title\";i:1;s:36:\"ast-dynamic-archive-post-description\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-archive-post-custom-title]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[ast-dynamic-archive-post-custom-title-support]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-archive-post-custom-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-archive-post-custom-description-support]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[ast-dynamic-archive-post-horizontal-alignment]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-archive-post-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-dynamic-archive-post-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-archive-post-elements-gap]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-banner-image-type]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-archive-post-banner-custom-bg]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-archive-post-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[ast-dynamic-archive-post-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-archive-post-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:69:\"astra-settings[ast-dynamic-archive-post-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-archive-post-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:57:\"astra-settings[ast-dynamic-archive-post-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:55:\"astra-settings[ast-dynamic-archive-post-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-archive-post-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:58:\"astra-settings[ast-dynamic-archive-post-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:56:\"astra-settings[ast-dynamic-archive-post-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"32\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-dynamic-archive-post-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[ast-dynamic-archive-post-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[ast-dynamic-archive-post-banner-on-blog]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"section-search-page-title-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-search-page-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-search-page-title-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[section-search-page-title-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[section-search-page-title-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:31:\"section-search-page-title-title\";i:1;s:36:\"section-search-page-title-breadcrumb\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-search-page-title-custom-title]\";a:4:{s:7:\"default\";s:19:\"Search Results for:\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:66:\"astra-settings[section-search-page-title-found-custom-description]\";a:4:{s:7:\"default\";s:44:\"Here are the search results for your search.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[section-search-page-title-not-found-custom-description]\";a:4:{s:7:\"default\";s:85:\"Sorry, but we could not find anything related to your search terms. Please try again.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[section-search-page-title-horizontal-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[section-search-page-title-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[section-search-page-title-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-search-page-title-elements-gap]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-banner-image-type]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[section-search-page-title-banner-custom-bg]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[section-search-page-title-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[section-search-page-title-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[section-search-page-title-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[section-search-page-title-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[section-search-page-title-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:58:\"astra-settings[section-search-page-title-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:56:\"astra-settings[section-search-page-title-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[section-search-page-title-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:59:\"astra-settings[section-search-page-title-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:57:\"astra-settings[section-search-page-title-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:32;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[section-search-page-title-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:56:\"astra-settings[section-search-page-title-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[ast-search-content-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[ast-search-content-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[ast-search-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[ast-search-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[ast-search-results-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[ast-search-results-per-page]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[ast-search-live-search]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[ast-search-live-search-post-types]\";a:4:{s:7:\"default\";a:2:{s:4:\"post\";i:1;s:4:\"page\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[related-posts-section-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"related-posts-section-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[enable-related-posts]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[related-posts-title]\";a:4:{s:7:\"default\";s:13:\"Related Posts\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[releted-posts-title-alignment]\";a:4:{s:7:\"default\";s:4:\"left\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[related-posts-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:14:\"featured-image\";i:1;s:10:\"title-meta\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[related-metadata-separator]\";a:4:{s:7:\"default\";s:1:\"/\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[related-posts-meta-structure]\";a:4:{s:7:\"default\";a:3:{i:0;s:8:\"comments\";i:1;s:8:\"category\";i:2;s:6:\"author\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-image-ratio-type]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[related-posts-image-ratio-pre-scale]\";a:4:{s:7:\"default\";s:4:\"16/9\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[related-posts-image-custom-scale-width]\";a:4:{s:7:\"default\";i:16;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:55:\"astra-settings[related-posts-image-custom-scale-height]\";a:4:{s:7:\"default\";i:9;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:60:\"astra-settings[related-posts-custom-image-scale-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[related-posts-image-size]\";a:4:{s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[related-posts-author-prefix-label]\";a:4:{s:7:\"default\";s:3:\"By \";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[related-posts-author-avatar]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[related-posts-author-avatar-size]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[related-posts-meta-date-type]\";a:4:{s:7:\"default\";s:9:\"published\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[related-posts-date-format]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[related-posts-category-style]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[related-posts-tag-style]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[enable-related-posts-excerpt]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[related-posts-excerpt-count]\";a:4:{s:7:\"default\";i:25;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[related-posts-total-count]\";a:4:{s:7:\"default\";i:2;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[related-posts-grid-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:7:\"2-equal\";s:6:\"tablet\";s:7:\"2-equal\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[related-posts-query-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[related-posts-based-on]\";a:4:{s:7:\"default\";s:10:\"categories\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[related-posts-order-by]\";a:4:{s:7:\"default\";s:4:\"date\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[related-posts-order]\";a:4:{s:7:\"default\";s:3:\"asc\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[related-posts-box-placement]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-outside-location]\";a:4:{s:7:\"default\";s:5:\"above\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[related-posts-container-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[related-posts-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[related-posts-section-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[related-posts-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[related-posts-meta-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[related-posts-content-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[related-posts-text-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[related-posts-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[related-posts-title-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[related-posts-background-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:40:\"astra-settings[related-posts-meta-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[related-posts-meta-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[related-posts-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:47:\"astra-settings[related-posts-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"500\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:45:\"astra-settings[related-posts-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"20\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[related-posts-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.5\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[related-posts-section-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:55:\"astra-settings[related-posts-section-title-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:53:\"astra-settings[related-posts-section-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"26\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[related-posts-section-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.6\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-meta-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:46:\"astra-settings[related-posts-meta-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:44:\"astra-settings[related-posts-meta-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"14\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-meta-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.6\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[related-posts-content-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:49:\"astra-settings[related-posts-content-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:47:\"astra-settings[related-posts-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[related-posts-content-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-sub-section-related-posts-border-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-sub-section-related-posts-border-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-sub-section-related-posts-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:59:\"astra-settings[ast-sub-section-related-posts-border-radius]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-sub-section-related-posts-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-sub-section-related-posts-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";d:2.5;s:5:\"right\";d:2.5;s:6:\"bottom\";d:2.5;s:4:\"left\";d:2.5;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:52:\"astra-settings[ast-sub-section-related-posts-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:2;s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[transparent-header-logo-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[hba-transparent-header-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-header-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[hbb-transparent-header-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[transparent-header-color-site-title-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[transparent-header-color-h-site-title-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[transparent-menu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-menu-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[transparent-menu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-submenu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[transparent-submenu-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-submenu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[transparent-content-section-link-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[transparent-content-section-link-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[transparent-header-enable]\";a:4:{s:7:\"default\";i:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[transparent-header-disable-on]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[transparent-header-disable-404-page]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-header-disable-search-page]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[transparent-header-disable-archive-pages]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[transparent-header-disable-index]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[transparent-header-disable-latest-posts-index]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[transparent-header-disable-page]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[transparent-header-disable-posts]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[transparent-header-on-devices]\";a:4:{s:7:\"default\";s:4:\"both\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[different-transparent-logo]\";a:4:{s:7:\"default\";i:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[transparent-header-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:49:\"astra-settings[different-transparent-retina-logo]\";a:4:{s:7:\"default\";i:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[transparent-header-retina-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:45:\"astra-settings[transparent-header-logo-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:150;s:6:\"tablet\";i:120;s:6:\"mobile\";i:100;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[transparent-header-main-sep]\";a:4:{s:7:\"default\";i:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[transparent-header-main-sep-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:47:\"astra-settings[divider-sec-transparent-styling]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[transparent-header-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[transparent-header-colors-menu]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[transparent-header-colors-submenu]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"section-transparent-header-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[transparent-header-social-text-colors-content]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[transparent-header-social-background-colors-content]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[transparent-header-social-icons-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[transparent-header-social-icons-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[transparent-header-social-icons-bg-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[transparent-header-social-icons-bg-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-header-html-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[transparent-header-html-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:50:\"astra-settings[transparent-header-html-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[transparent-header-html-link-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[transparent-header-search-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:62:\"astra-settings[transparent-header-search-box-background-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:53:\"astra-settings[transparent-header-buttons-text-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[transparent-header-buttons-background-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[transparent-header-buttons-border-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-header-button-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:54:\"astra-settings[transparent-header-button-text-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:50:\"astra-settings[transparent-header-button-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[transparent-header-button-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:54:\"astra-settings[transparent-header-button-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[transparent-header-button-border-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[transparent-account-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:51:\"astra-settings[transparent-account-type-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:51:\"astra-settings[transparent-header-toggle-btn-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-header-toggle-btn-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-header-toggle-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[breadcrumb-position]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[breadcrumb-position-none-notice]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:49:\"astra-settings[breadcrumb-disable-layout-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[breadcrumb-disable-on]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[breadcrumb-disable-home-page]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[breadcrumb-disable-blog-posts-page]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[breadcrumb-disable-search]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[breadcrumb-disable-archive]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[breadcrumb-disable-single-page]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[breadcrumb-disable-single-post]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[breadcrumb-disable-singular]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[breadcrumb-disable-404-page]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[breadcrumb-alignment]\";a:4:{s:7:\"default\";s:4:\"left\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[breadcrumb-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[breadcrumb-separator-selector]\";a:4:{s:7:\"default\";s:5:\"\\003E\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[breadcrumb-separator]\";a:4:{s:7:\"default\";s:5:\"\\00bb\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"section-breadcrumb-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[breadcrumb-color-section-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[breadcrumb-bg-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[breadcrumb-active-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[breadcrumb-separator-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[section-breadcrumb-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[breadcrumb-text-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[breadcrumb-hover-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[section-breadcrumb-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[breadcrumb-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:38:\"astra-settings[breadcrumb-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:36:\"astra-settings[breadcrumb-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[breadcrumb-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[scroll-to-top-enable]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[scroll-to-top-on-devices]\";a:4:{s:7:\"default\";s:4:\"both\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[scroll-to-top-icon-position]\";a:4:{s:7:\"default\";s:5:\"right\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[scroll-to-top-icon-size]\";a:4:{s:7:\"default\";i:15;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[scroll-on-top-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[scroll-on-top-bg-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[scroll-to-top-icon-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[scroll-to-top-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:43:\"astra-settings[scroll-to-top-icon-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:42:\"astra-settings[scroll-to-top-icon-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:45:\"astra-settings[scroll-to-top-icon-h-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:38:\"section-scroll-to-top-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[enable-scroll-to-top-notice]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:34:\"astra-settings[heading-base-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:38:\"astra-settings[button-text-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[secondary-button-text-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[font-family-button]\";a:4:{s:7:\"default\";s:18:\"\'Lato\', sans-serif\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:44:\"astra-settings[secondary-font-family-button]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:34:\"astra-settings[font-weight-button]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:44:\"astra-settings[secondary-font-weight-button]\";a:4:{s:7:\"default\";s:3:\"500\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:32:\"astra-settings[font-size-button]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[secondary-font-size-button]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"16\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[font-extras-button]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";i:1;s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[secondary-font-extras-button]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";i:1;s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"section-footer-builder-layout-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[builder-footer]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[footer-bg-obj-responsive-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:36:\"astra-settings[footer-desktop-items]\";a:4:{s:7:\"default\";a:3:{s:5:\"above\";a:5:{s:7:\"above_1\";a:0:{}s:7:\"above_2\";a:0:{}s:7:\"above_3\";a:0:{}s:7:\"above_4\";a:0:{}s:7:\"above_5\";a:0:{}}s:7:\"primary\";a:5:{s:9:\"primary_1\";a:0:{}s:9:\"primary_2\";a:0:{}s:9:\"primary_3\";a:0:{}s:9:\"primary_4\";a:0:{}s:9:\"primary_5\";a:0:{}}s:5:\"below\";a:5:{s:7:\"below_1\";a:1:{i:0;s:9:\"copyright\";}s:7:\"below_2\";a:0:{}s:7:\"below_3\";a:0:{}s:7:\"below_4\";a:0:{}s:7:\"below_5\";a:0:{}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[footer-draggable-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-builder-pro-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[section-footer-builder-layout-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[section-footer-builder-layout-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:52:\"astra-settings[section-footer-builder-layout-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"section-above-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-header-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:50;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[hba-header-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:55:\"var( --ast-global-color-primary, --ast-global-color-4 )\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[hba-header-bottom-border-color]\";a:4:{s:7:\"default\";s:65:\"var( --ast-global-color-subtle-background, --ast-global-color-7 )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:36:\"astra-settings[hba-header-separator]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-header-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-header-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-above-header-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:66:\"astra-settings[section-above-header-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-below-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-header-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:60;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[hbb-header-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:7:\"#eeeeee\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[hbb-header-bottom-border-color]\";a:4:{s:7:\"default\";s:65:\"var( --ast-global-color-subtle-background, --ast-global-color-7 )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:36:\"astra-settings[hbb-header-separator]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-header-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-header-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-below-header-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:66:\"astra-settings[section-below-header-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-header-widget-1-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:43:\"astra-settings[header-widget-1-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-widget-1-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-widget-1-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-widget-1-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-widget-1-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-widget-1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-widget-1-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-header-widget-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-header-widget-2-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:43:\"astra-settings[header-widget-2-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-widget-2-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-widget-2-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-widget-2-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-widget-2-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-widget-2-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-widget-2-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-header-widget-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"section-header-mobile-trigger-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-trigger-icon]\";a:4:{s:7:\"default\";s:4:\"menu\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[mobile-header-toggle-btn-style]\";a:4:{s:7:\"default\";s:7:\"minimal\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[mobile-header-menu-label]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[mobile-header-toggle-btn-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[mobile-header-toggle-icon-size]\";a:4:{s:7:\"default\";i:20;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[mobile-header-toggle-btn-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[mobile-header-toggle-btn-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:1;s:5:\"right\";i:1;s:6:\"bottom\";i:1;s:4:\"left\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[mobile-header-toggle-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:57:\"astra-settings[mobile-header-toggle-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:60:\"astra-settings[section-header-mobile-trigger-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-header-mobile-trigger-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[mobile-header-label-font-size]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-popup-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[mobile-header-type]\";a:4:{s:7:\"default\";s:8:\"dropdown\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[off-canvas-move-body]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[off-canvas-move-body-notice]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:32:\"astra-settings[off-canvas-slide]\";a:4:{s:7:\"default\";s:5:\"right\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-builder-menu-toggle-target]\";a:4:{s:7:\"default\";s:4:\"icon\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-offcanvas-content-alignment]\";a:4:{s:7:\"default\";s:10:\"flex-start\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[off-canvas-background]\";a:4:{s:7:\"default\";a:10:{s:16:\"background-color\";s:7:\"#ffffff\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_background_obj\";}}s:38:\"astra-settings[off-canvas-close-color]\";a:4:{s:7:\"default\";s:7:\"#3a3a3a\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:40:\"astra-settings[off-canvas-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[off-canvas-padding]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"section-primary-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-header-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:80;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hb-header-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:55:\"var( --ast-global-color-primary, --ast-global-color-4 )\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[hb-header-main-sep-color]\";a:4:{s:7:\"default\";s:65:\"var( --ast-global-color-subtle-background, --ast-global-color-7 )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:34:\"astra-settings[hb-header-main-sep]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-header-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-header-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:53:\"astra-settings[section-primary-header-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:68:\"astra-settings[section-primary-header-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[logo-title-settings-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:30:\"title_tagline-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[header-logo-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[title_tagline-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[title_tagline-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:36:\"astra-settings[font-size-site-title]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:26;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[font-size-site-tagline]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[title_tagline-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"section-hb-button-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-button1-text]\";a:4:{s:7:\"default\";s:6:\"Button\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-link-option]\";a:4:{s:7:\"default\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:13:\"sanitize_link\";}}s:47:\"astra-settings[header-button1-text-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[header-button1-background-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-button1-text-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-button1-text-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-button1-back-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-button1-back-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[header-button1-builder-button-border-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-button1-border-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-button1-border-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-button1-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:40;s:5:\"right\";i:40;s:6:\"bottom\";i:40;s:4:\"left\";i:40;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:46:\"astra-settings[header-button1-text-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:42:\"astra-settings[header-button1-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:40:\"astra-settings[header-button1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[section-hb-button-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[section-hb-button-1-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[section-hb-button-1-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:15;s:5:\"right\";i:30;s:6:\"bottom\";i:15;s:4:\"left\";i:30;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[section-hb-button-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-html-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-hb-html-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-html-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[header-html-1]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[header-html-1color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-html-1-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-html-1link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-html-1link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-hb-html-1-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-html-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-html-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-hb-html-2]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-html-2-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[header-html-2]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[header-html-2color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-html-2-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-html-2link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-html-2link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-hb-html-2-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-html-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-menu-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-menu-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu1-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu1-menu-hover-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu1-submenu-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-menu1-submenu-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-menu1-submenu-container-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-menu1-submenu-container-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-menu1-submenu-item-b-size]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu1-submenu-item-b-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:47:\"astra-settings[header-menu1-submenu-top-offset]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-menu1-submenu-border]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu1-submenu-b-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:57:\"astra-settings[header-menu1-submenu-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[header-menu1-submenu-item-border]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu1-menu-stack-on-mobile]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-menu-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[header-menu1-text-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu1-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu1-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-3)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu1-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu1-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu1-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu1-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu1-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-1-font-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-menu1-header-menu-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu1-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:40:\"astra-settings[header-menu1-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:38:\"astra-settings[header-menu1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu1-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-1-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-menu1-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-menu-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-menu-2-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu2-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu2-menu-hover-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu2-submenu-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-menu2-submenu-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-menu2-submenu-container-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-menu2-submenu-container-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-menu2-submenu-item-b-size]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu2-submenu-item-b-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:47:\"astra-settings[header-menu2-submenu-top-offset]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-menu2-submenu-border]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu2-submenu-b-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:57:\"astra-settings[header-menu2-submenu-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[header-menu2-submenu-item-border]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu2-menu-stack-on-mobile]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-menu-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[header-menu2-text-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu2-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu2-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-3)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu2-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu2-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu2-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu2-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu2-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-2-font-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-menu2-header-menu-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu2-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:40:\"astra-settings[header-menu2-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:38:\"astra-settings[header-menu2-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu2-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-2-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-menu2-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:38:\"section-header-search-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-search-icon-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-search-icon-space]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";i:18;s:6:\"mobile\";i:18;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-search-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:27:\"astra-settings[live-search]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[live-search-post-types]\";a:4:{s:7:\"default\";a:2:{s:4:\"post\";i:1;s:4:\"page\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[live-search-result-count]\";a:4:{s:7:\"default\";i:5;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-header-search-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[section-header-search-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:59:\"astra-settings[section-header-search-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-account-tabs]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-account-login-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-account-login-style]\";a:4:{s:7:\"default\";s:4:\"icon\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[header-account-login-style-extend-text-profile-type]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-account-logged-in-text]\";a:4:{s:7:\"default\";s:10:\"My Account\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-account-login-link]\";a:4:{s:7:\"default\";a:3:{s:3:\"url\";s:0:\"\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:13:\"sanitize_link\";}}s:45:\"astra-settings[header-account-logout-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-account-logout-style]\";a:4:{s:7:\"default\";s:4:\"icon\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[header-account-logout-style-extend-text-profile-type]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-account-logout-preview]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-account-logged-out-text]\";a:4:{s:7:\"default\";s:6:\"Log In\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-account-logout-link]\";a:4:{s:7:\"default\";a:3:{s:3:\"url\";s:38:\"https://mrarif.me/drsarah/wp-login.php\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:13:\"sanitize_link\";}}s:42:\"astra-settings[header-account-image-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:2:\"40\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-account-icon-size]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";i:18;s:6:\"mobile\";i:18;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-account-icon-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:50:\"astra-settings[header-account-text-design-options]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-account-type-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[header-account-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-account-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[font-size-section-header-account]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[section-header-account-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[section-hb-social-icons-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[font-size-section-hb-social-icons-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"section-hb-social-icons-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-social-1-color-type]\";a:4:{s:7:\"default\";s:6:\"custom\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-social-1-brand-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-social-1-brand-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-social-1-brand-hover-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-social-1-icon-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-social-1-label-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-social-1-background-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-social-1-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-social-1-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-social-1-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-social-1-label-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-social-1-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-social-1-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-social-icons-1]\";a:4:{s:7:\"default\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:21:\"sanitize_social_icons\";}}s:44:\"astra-settings[header-social-1-label-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-social-1-space]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-social-1-bg-space]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[header-social-1-size]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-social-1-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:56:\"astra-settings[section-hb-social-icons-1-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-hb-social-icons-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:43:\"section-header-mobile-menu-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-mobile-menu-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-mobile-menu-submenu-item-border]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[header-mobile-menu-divider-colors-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-mobile-menu-submenu-item-b-size]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[header-mobile-menu-submenu-item-b-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[header-mobile-menu-link-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[header-mobile-menu-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-mobile-menu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-3)\";s:6:\"tablet\";s:25:\"var(--ast-global-color-3)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[header-mobile-menu-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[header-mobile-menu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:25:\"var(--ast-global-color-1)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-mobile-menu-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:25:\"var(--ast-global-color-5)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[header-mobile-menu-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:25:\"var(--ast-global-color-1)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-mobile-menu-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:25:\"var(--ast-global-color-5)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-mobile-menu-header-typo-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[header-mobile-menu-header-menu-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-mobile-menu-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:46:\"astra-settings[header-mobile-menu-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:44:\"astra-settings[header-mobile-menu-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[font-extras-header-mobile-menu]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[header-mobile-menu-menu-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-mobile-menu-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:49:\"astra-settings[section-header-mobile-menu-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:64:\"astra-settings[section-header-mobile-menu-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-above-footer-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-footer-column]\";a:4:{s:7:\"default\";s:1:\"2\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-footer-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:7:\"2-equal\";s:6:\"tablet\";s:7:\"2-equal\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[hba-footer-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-footer-height]\";a:4:{s:7:\"default\";i:60;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[hba-footer-vertical-alignment]\";a:4:{s:7:\"default\";s:10:\"flex-start\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:25:\"astra-settings[hba-stack]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:5:\"stack\";s:6:\"tablet\";s:5:\"stack\";s:6:\"mobile\";s:5:\"stack\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[hba-footer-separator]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hba-footer-top-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:44:\"astra-settings[hba-footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:7:\"#eeeeee\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-footer-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-footer-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-above-footer-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:66:\"astra-settings[section-above-footer-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-below-footer-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-footer-column]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-footer-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"full\";s:6:\"tablet\";s:4:\"full\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[hbb-footer-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-footer-height]\";a:4:{s:7:\"default\";i:60;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[hbb-footer-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:25:\"astra-settings[hbb-stack]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:5:\"stack\";s:6:\"tablet\";s:5:\"stack\";s:6:\"mobile\";s:5:\"stack\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[hbb-footer-separator]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hbb-footer-top-border-color]\";a:4:{s:7:\"default\";s:65:\"var( --ast-global-color-subtle-background, --ast-global-color-7 )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:44:\"astra-settings[hbb-footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:26:\"var(--ast-global-color-4 )\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-footer-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-footer-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-below-footer-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:66:\"astra-settings[section-below-footer-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"section-footer-copyright-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-copyright-editor]\";a:4:{s:7:\"default\";s:77:\"Copyright [copyright] [current_year] [site_title] | Powered by [theme_author]\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-copyright-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[footer-copyright-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-3)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:55:\"astra-settings[section-footer-copyright-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[section-footer-copyright-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:50:\"astra-settings[font-size-section-footer-copyright]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:16;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[section-footer-copyright-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"section-footer-menu-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[footer-menu-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:10:\"horizontal\";s:6:\"tablet\";s:8:\"vertical\";s:6:\"mobile\";s:8:\"vertical\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-menu-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-menu-link-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-menu-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-menu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-menu-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[footer-menu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-menu-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[footer-menu-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-menu-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-main-menu-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-main-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[section-footer-menu-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:37:\"astra-settings[footer-menu-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[section-footer-menu-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[section-fb-social-icons-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[font-size-section-fb-social-icons-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"section-fb-social-icons-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-social-1-color-type]\";a:4:{s:7:\"default\";s:6:\"custom\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-social-1-brand-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-social-1-brand-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[footer-social-1-brand-hover-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-social-1-icon-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-social-1-label-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[footer-social-1-background-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-social-1-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-social-1-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-social-1-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-social-1-label-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-social-1-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-social-1-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-social-icons-1]\";a:4:{s:7:\"default\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:21:\"sanitize_social_icons\";}}s:44:\"astra-settings[footer-social-1-label-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-social-1-space]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-social-1-bg-space]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[footer-social-1-size]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-social-1-radius-fields]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:56:\"astra-settings[section-fb-social-icons-1-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-fb-social-icons-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-social-1-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"section-primary-footer-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-footer-column]\";a:4:{s:7:\"default\";s:1:\"3\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-footer-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:7:\"3-equal\";s:6:\"tablet\";s:7:\"3-equal\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[hb-footer-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[hb-primary-footer-height]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[hb-footer-vertical-alignment]\";a:4:{s:7:\"default\";s:10:\"flex-start\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:24:\"astra-settings[hb-stack]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:5:\"stack\";s:6:\"tablet\";s:5:\"stack\";s:6:\"mobile\";s:5:\"stack\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[hb-footer-main-sep]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[hb-footer-main-sep-color]\";a:4:{s:7:\"default\";s:65:\"var( --ast-global-color-subtle-background, --ast-global-color-7 )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:43:\"astra-settings[hb-footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:7:\"#f9f9f9\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-footer-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-footer-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:53:\"astra-settings[section-primary-footer-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:68:\"astra-settings[section-primary-footer-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[section-fb-html-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-fb-html-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-fb-html-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[footer-html-1]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[footer-html-1color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-html-1-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-html-1link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-html-1link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-fb-html-1-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-fb-html-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:39:\"astra-settings[footer-html-1-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[section-fb-html-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-fb-html-2]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-fb-html-2-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[footer-html-2]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[footer-html-2color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-html-2-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-html-2link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-html-2link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-fb-html-2-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-fb-html-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:39:\"astra-settings[footer-html-2-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-1-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-1]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-1-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-1-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-1-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-1-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-1-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-1-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-footer-widget-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-2-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-2]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-2-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-2-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-2-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-2-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-2-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-2-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-2-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-footer-widget-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-3-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-3]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-3-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-3-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-3-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-3-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-3-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-3-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-3-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-footer-widget-3-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-4-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-4]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-4-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-4-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-4-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-4-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-4-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-4-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-4-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-footer-widget-4-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}}s:8:\"partials\";a:37:{s:41:\"astra-settings[header-mobile-popup-items]\";a:4:{s:8:\"selector\";s:25:\"#ast-mobile-popup-wrapper\";s:15:\"render_callback\";a:2:{i:0;O:20:\"Astra_Builder_Header\":0:{}i:1;s:12:\"mobile_popup\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[different-retina-logo]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:38:\"astra-settings[ast-header-retina-logo]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[different-mobile-logo]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:33:\"astra-settings[use-logo-svg-icon]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:49:\"Astra_Builder_UI_Controller::render_site_identity\";s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:29:\"astra-settings[logo-svg-icon]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:49:\"Astra_Builder_UI_Controller::render_site_identity\";s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:33:\"astra-settings[logo-title-inline]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[related-posts-title]\";a:4:{s:8:\"selector\";s:57:\".ast-related-posts-title-section .ast-related-posts-title\";s:15:\"render_callback\";a:2:{i:0;s:26:\"Astra_Related_Posts_Loader\";i:1;s:26:\"render_related_posts_title\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:39:\"astra-settings[transparent-header-logo]\";a:4:{s:8:\"selector\";s:64:\".ast-replace-site-logo-transparent .site-branding .site-logo-img\";s:15:\"render_callback\";s:0:\"\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[breadcrumb-position]\";a:4:{s:8:\"selector\";s:54:\".ast-breadcrumbs-wrapper .ast-breadcrumbs .trail-items\";s:15:\"render_callback\";s:0:\"\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:36:\"astra-settings[footer-desktop-items]\";a:4:{s:8:\"selector\";s:12:\".site-footer\";s:15:\"render_callback\";a:2:{i:0;O:20:\"Astra_Builder_Footer\":0:{}i:1;s:13:\"footer_markup\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[header-trigger-icon]\";a:4:{s:8:\"selector\";s:16:\".ast-button-wrap\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:21:\"render_mobile_trigger\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:46:\"astra-settings[mobile-header-toggle-btn-style]\";a:4:{s:8:\"selector\";s:16:\".ast-button-wrap\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:21:\"render_mobile_trigger\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:40:\"astra-settings[mobile-header-menu-label]\";a:4:{s:8:\"selector\";s:16:\".ast-button-wrap\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:21:\"render_mobile_trigger\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[header-button1-text]\";a:4:{s:8:\"selector\";s:20:\".ast-header-button-1\";s:15:\"render_callback\";a:2:{i:0;r:9173;i:1;s:8:\"button_1\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:0;}s:42:\"astra-settings[header-button1-link-option]\";a:4:{s:8:\"selector\";s:20:\".ast-header-button-1\";s:15:\"render_callback\";a:2:{i:0;r:9173;i:1;s:8:\"button_1\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:29:\"astra-settings[header-html-1]\";a:4:{s:8:\"selector\";s:18:\".ast-header-html-1\";s:15:\"render_callback\";a:2:{i:0;r:9173;i:1;s:13:\"header_html_1\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}s:29:\"astra-settings[header-html-2]\";a:4:{s:8:\"selector\";s:18:\".ast-header-html-2\";s:15:\"render_callback\";a:2:{i:0;r:9173;i:1;s:13:\"header_html_2\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}s:42:\"astra-settings[header-account-login-style]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:67:\"astra-settings[header-account-login-style-extend-text-profile-type]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:45:\"astra-settings[header-account-logged-in-text]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:41:\"astra-settings[header-account-login-link]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:43:\"astra-settings[header-account-logout-style]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:68:\"astra-settings[header-account-logout-style-extend-text-profile-type]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:45:\"astra-settings[header-account-logout-preview]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:46:\"astra-settings[header-account-logged-out-text]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[header-social-icons-1]\";a:4:{s:8:\"selector\";s:25:\".ast-header-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9173;i:1;s:15:\"header_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:44:\"astra-settings[header-social-1-label-toggle]\";a:4:{s:8:\"selector\";s:25:\".ast-header-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9173;i:1;s:15:\"header_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:33:\"astra-settings[hba-footer-column]\";a:4:{s:8:\"selector\";s:23:\".site-above-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:12:\"above_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:33:\"astra-settings[hbb-footer-column]\";a:4:{s:8:\"selector\";s:23:\".site-below-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:12:\"below_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:39:\"astra-settings[footer-copyright-editor]\";a:4:{s:8:\"selector\";s:21:\".ast-footer-copyright\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:16:\"footer_copyright\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:34:\"astra-settings[footer-menu-layout]\";a:4:{s:8:\"selector\";s:59:\".footer-widget-area[data-section=\"section-footer-menu\"] nav\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:11:\"footer_menu\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[footer-social-icons-1]\";a:4:{s:8:\"selector\";s:25:\".ast-footer-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:15:\"footer_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:44:\"astra-settings[footer-social-1-label-toggle]\";a:4:{s:8:\"selector\";s:25:\".ast-footer-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:15:\"footer_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:32:\"astra-settings[hb-footer-column]\";a:4:{s:8:\"selector\";s:25:\".site-primary-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:14:\"primary_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:29:\"astra-settings[footer-html-1]\";a:4:{s:8:\"selector\";s:18:\".ast-footer-html-1\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:13:\"footer_html_1\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}s:29:\"astra-settings[footer-html-2]\";a:4:{s:8:\"selector\";s:18:\".ast-footer-html-2\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:13:\"footer_html_2\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}}}', 'off');
INSERT INTO `wpd_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1380, '_site_transient_timeout_wp_theme_files_patterns-4528c8b4de3705ae34c9ee90fbc9ae76', '1775574765', 'off'),
(1381, '_site_transient_wp_theme_files_patterns-4528c8b4de3705ae34c9ee90fbc9ae76', 'a:2:{s:7:\"version\";s:5:\"1.0.0\";s:8:\"patterns\";a:0:{}}', 'off'),
(1382, '_site_transient_timeout_wp_theme_files_patterns-90fdddd0efd052045ed759f88fa41a28', '1775574765', 'off'),
(1383, '_site_transient_wp_theme_files_patterns-90fdddd0efd052045ed759f88fa41a28', 'a:2:{s:7:\"version\";s:6:\"4.12.6\";s:8:\"patterns\";a:0:{}}', 'off'),
(1276, '_transient_is_multi_author', '0', 'on');
INSERT INTO `wpd_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(151, '_site_transient_wp_plugin_dependencies_plugin_data', 'a:1:{s:9:\"elementor\";a:35:{s:4:\"name\";s:63:\"Elementor Website Builder &#8211; more than just a page builder\";s:4:\"slug\";s:9:\"elementor\";s:7:\"version\";s:5:\"4.0.1\";s:6:\"author\";s:64:\"<a href=\"https://profiles.wordpress.org/elemntor/\">Elementor</a>\";s:14:\"author_profile\";s:40:\"https://profiles.wordpress.org/elemntor/\";s:12:\"contributors\";a:1:{s:8:\"elemntor\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/elemntor/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/7d70f15d78757f876d1847a8f87dd93e1d9c168264b4aeeaf72058656690d05b?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:9:\"Elementor\";}}s:8:\"requires\";s:3:\"6.6\";s:6:\"tested\";s:5:\"6.9.4\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:90;s:7:\"ratings\";a:5:{i:5;i:6111;i:4;i:221;i:3;i:115;i:2;i:110;i:1;i:654;}s:11:\"num_ratings\";i:7211;s:11:\"support_url\";s:47:\"https://wordpress.org/support/plugin/elementor/\";s:15:\"support_threads\";i:59;s:24:\"support_threads_resolved\";i:46;s:15:\"active_installs\";i:10000000;s:12:\"last_updated\";s:21:\"2026-04-01 1:40pm GMT\";s:5:\"added\";s:10:\"2016-05-30\";s:8:\"homepage\";s:87:\"https://elementor.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash\";s:8:\"sections\";a:6:{s:11:\"description\";s:24693:\"<p><span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe loading=\"lazy\" class=\"youtube-player\" width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/ROEC0CPRO3w?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></span></p>\n<h4>THE #1 NO CODE DRAG &amp; DROP WORDPRESS WEBSITE BUILDER POWERING 22M+ WEBSITES WORLDWIDE, NOW WITH AI.</h4>\n<p>Elementor, the leading WordPress website creation platform, empowers you to build professional, pixel-perfect websites seamlessly with its no-code, drag-and-drop Atomic Editor.</p>\n<p>Supporting the full website lifecycle, Elementor enables you to confidently build, optimize, and manage your website with extended capabilities such as AI-powered creation, image optimization, transactional email delivery, accessibility tools, performance boosters, and more.</p>\n<p>Now in version 4 &#8211; the Atomic Editor! Introducing a new generation of performance-first atomic building blocks that allow you to control every atomic part with no limits or locked layouts. Define your global design systems and reusable components once, and they apply everywhere instantly &#8211; turning hours or even days of work into single clicks.</p>\n<p>Unlock all features with <strong><a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-pro-pro-features/\" rel=\"nofollow ugc\">Elementor One</a></strong>.</p>\n<p>Need fast and secure cloud hosting for your Elementor site? Try out <strong><a href=\"https://elemn.to/repo-hosting\" rel=\"nofollow ugc\">Elementor Host</a></strong> Powered by Google Cloud &amp; Cloudflare. 4.9/5 TrustPilot score.</p>\n<h3>🌟 Create Professional Stunning Websites</h3>\n<ul>\n<li><strong><a href=\"https://go.elementor.com/feature-page-editor/\" rel=\"nofollow ugc\">Intuitive Drag &amp; Drop Builder</a></strong>: Build any website with our no-code, drag-and-drop Editor. Achieve design precision with full control over layout and style.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-feature-page/\" rel=\"nofollow ugc\">Pixel-Perfect Design Tools</a></strong>: Upload SVGs, apply masks, gradients, box shadows, headline effects, shape dividers, and use built-in CSS controls for advanced customization.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-library-full-website-kit/\" rel=\"nofollow ugc\">Template Library</a></strong>: Apply complete website kits for instant setups, or choose from a vast library of single pages, blocks, and pop-up templates.</li>\n<li><strong><a href=\"https://go.elementor.com/feature-page-editor/\" rel=\"nofollow ugc\">Advanced Widgets</a></strong>: Access over 40 FREE widgets, including heading, image, text editor, video, button, gallery, carousels, and more.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-ai/\" rel=\"nofollow ugc\">AI Capabilities</a></strong>: Revolutionize your design and content creation process with native AI integration. Instantly create sections, text, code, and images.</li>\n</ul>\n<h4>🗝️ Key features:</h4>\n<ul>\n<li><strong><a href=\"https://go.elementor.com/feature-page-global-settings/\" rel=\"nofollow ugc\">Design System</a></strong>: Use Variables and Classes for consistent colors, typography, and design elements, ensuring a cohesive, professional look that updates everywhere globally.</li>\n<li><strong><a href=\"https://go.elementor.com/feature-page-responsive-design/\" rel=\"nofollow ugc\">Responsive Design</a></strong>: Optimize your design for every device with custom breakpoints, ensuring a seamless desktop, tablet, and mobile experience.</li>\n<li><strong>Mask Shapes</strong>: Turning any element, like an image or video, into whatever shape you desire to create standout designs.</li>\n<li><strong>CSS Transform</strong>: Use CSS Transform to rotate, scale, and skew elements, adding dynamic styling to your site.</li>\n<li><strong>Entrance Animations</strong>: Add entrance animations to elements to create engaging and interactive user experiences.</li>\n<li><strong><a href=\"https://elementor.com/features/#SaveBackup\" rel=\"nofollow ugc\">Revision History</a></strong>: Elementor’s Revision History feature enables users to track and revert to previous versions of their designs, providing peace of mind and flexibility during the creative process.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-developers-developers-website/\" rel=\"nofollow ugc\">Developer-Friendly</a></strong>: Equipped with extensive documentation, API, developer tools, and custom code areas, Elementor offers a conducive environment for developers to extend its capabilities and create custom solutions.</li>\n<li><strong><a href=\"https://elementor.com/features/contact-button/\" rel=\"nofollow ugc\">Floating Buttons</a></strong>: Enhance user interaction with customizable, floating action buttons that stay in view as users scroll.</li>\n<li><strong>Components [Pro]</strong>: Reuse the same building blocks across pages and sites, and update them everywhere they appear. Including controlled content editing, allowing collaborators and clients to update only exposed content properties without breaking layout or styling.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-industry-leading-theme-builder/\" rel=\"nofollow ugc\">Theme Builder</a> [Pro]</strong>: Design every part of your site—headers, footers, posts, and archives—for complete control over appearance.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-popup-builder/\" rel=\"nofollow ugc\">Popup Builder</a> [Pro]</strong>: Create eye-catching popups with Elementor’s Popup Builder, equipped with advanced targeting and triggering options to optimize user engagement and conversions.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-professional-form-builder-and-submission-log/\" rel=\"nofollow ugc\">Forms</a> [Pro]</strong>: Design and integrate custom forms, utilizing advanced features and integrations to capture and manage submissions effectively.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-woocommerce-builder/\" rel=\"nofollow ugc\">WooCommerce Builder</a> [Pro]</strong>:  Integrate Elementor with WooCommerce to design custom product pages, shop layouts, archives, carts, checkout pages, my account, and more, enhancing your store’s visual appeal and functionality.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-dynamic-content/\" rel=\"nofollow ugc\">Dynamic Content</a> [Pro]</strong>: Leverage dynamic content capabilities to create personalized and interactive web experiences by connecting your designs to various data sources.</li>\n<li><strong><a href=\"https://go.elementor.com/features-page-notes/\" rel=\"nofollow ugc\">Notes</a> [Pro]</strong>: Enhance team collaboration by using Elementor’s Notes feature to leave feedback and comments directly on the design interface.</li>\n<li><strong>Custom Code [Pro]</strong>: Insert custom code to extend the functionality of your site, offering flexibility for advanced customizations.</li>\n<li><strong>Custom CSS [Pro]</strong>: Apply Custom CSS to fine-tune the styling of elements, ensuring precise control over the design aspects.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-motion-effects/\" rel=\"nofollow ugc\">Motion Effects</a> [Pro]</strong>: Add advanced motion effects to elements for a more dynamic and engaging user experience.</li>\n<li><strong>Custom Fonts &amp; Icons [Pro]</strong>: Upload and use custom fonts and icons to match your brand’s identity.</li>\n</ul>\n<h4>😍 Elementor FREE widgets</h4>\n<p>Unlock the potential of Elementor with our comprehensive suite of free widgets and tools, designed to empower your website creation process and elevate your design capabilities:</p>\n<ul>\n<li><strong>Heading</strong>. Add eye-catching headlines.</li>\n<li><strong>Image</strong>. Control the size, opacity and more.</li>\n<li><strong>Text Editor</strong>. Just like the WordPress text editor.</li>\n<li><strong>Video</strong>. Add YouTube, Vimeo, VideoPress, Dailymotion or self-hosted videos.</li>\n<li><strong>Button</strong>. Create interactive buttons.</li>\n<li><strong>Link in Bio</strong>. Build link in bio components to promote your business / services.</li>\n<li><strong>Image Box</strong>. A box with image, headline and text.</li>\n<li><strong>Testimonials</strong>. Customer testimonials.</li>\n<li><strong>Icon</strong>. Place one or more of 600+ icons available.</li>\n<li><strong>Icon Box</strong>. An icon, headline, and text with one widget.</li>\n<li><strong>Social Icons</strong>. Link to your social pages with the Facebook/X (formerly Twitter) icons.</li>\n<li><strong>Image Gallery</strong>. Display your images in a grid.</li>\n<li><strong>Image Carousel</strong>. Create rotating carousels or sliders for chosen images.</li>\n<li><strong>Icon List</strong>. Use any icon to create a bullet list.</li>\n<li><strong>Counter</strong>. Show numbers in an escalating manner.</li>\n<li><strong>Progress Bar</strong>. Include an escalating progress bar.</li>\n<li><strong>Nested Tabs</strong>. Display content in vertical or horizontal tabs.</li>\n<li><strong>Nested Accordion</strong>. Display any type of content in collapsible sections.</li>\n<li><strong>Rating</strong>. Display how many stars (or another icon) other visitors gave.</li>\n<li><strong>Alert</strong>. Include a colored alert box to draw visitor’s attention.</li>\n<li><strong>HTML</strong>. Insert code into the page.</li>\n<li><strong>Shortcode</strong>. Insert shortcodes from any plugin into the page.</li>\n<li><strong>Menu Anchor</strong>. Link any menu to this anchor.</li>\n<li><strong>Read More</strong>. Set the Read More cut-off for the excerpt in archive pages.</li>\n<li><strong>Sidebar</strong>. Add sidebars onto the page.</li>\n<li><strong>Google Maps</strong>. Embed maps into the page.</li>\n<li><strong>SoundCloud</strong>. Add SoundCloud audio bits.</li>\n<li><strong>Divider</strong>. Separate content with a designed divider.</li>\n<li><strong>Spacer</strong>. Add space between elements.</li>\n<li><strong>Text Path</strong>. Attach your text to a path.</li>\n<li><strong>And counting&#8230;</strong></li>\n</ul>\n<h3>🚀 Enhance Your Website</h3>\n<p><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-performance-performance-page/\" rel=\"nofollow ugc\">High-Performing Websites</a></strong>: Website performance impacts your visitor’s experience and search result ranking. Elementor, in partnership with Google Chrome, continuously enhances performance without compromising design.</p>\n<p><strong>Key features include:</strong></p>\n<ul>\n<li><strong>Reduced DOM Output</strong>: Streamlined HTML structure for faster rendering.</li>\n<li><strong>Improved Media File Loading</strong>: Optimized loading of images, videos, and other media assets.</li>\n<li><strong>Reduced CSS and JS Files</strong>: Minimized stylesheets and scripts individually loaded only on demand for quicker loading times.</li>\n<li><strong>Lazy Loading</strong>: Deferred loading of non-critical resources to improve initial page load speed.</li>\n<li><strong>Faster Font Loading</strong>: Efficient delivery of web fonts to enhance text rendering speed.</li>\n<li><strong>Optimized Front-End Asset Loading</strong>: Efficient loading of assets like JavaScript and CSS to minimize render-blocking.</li>\n<li><strong>Element Caching</strong>: Cache frequently accessed design elements to reduce server response time and enhance overall performance.</li>\n</ul>\n<h3>🔥 Elementor Editor Pro Features</h3>\n<p>Create unparalleled websites while saving time, money and resources with <a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-pro-elementor-pro/\" rel=\"nofollow ugc\">Elementor Editor Pro</a>’s full website builder. Get access to 100+ professional widgets, features, and tools.</p>\n<p><strong>Editor Pro Design Widgets:</strong></p>\n<ol>\n<li><strong>Posts</strong>: Display your blog posts with customizable layouts and styles.</li>\n<li><strong>Share Buttons</strong>: Allow visitors to easily share your content on various social media platforms.</li>\n<li><strong>Portfolio</strong>: Showcase your work or projects with stunning portfolio layouts.</li>\n<li><strong>Slides</strong>: Create dynamic slideshows with custom animations and transitions.</li>\n<li><strong>Form</strong>: Design and customize advanced forms for user interaction and data collection.</li>\n<li><strong>Login</strong>: Add a login form or user registration module to your website.</li>\n<li><strong>Nav Menu</strong>: Customize and style your website&#8217;s navigation menu for better user experience.</li>\n<li><strong>Animated Headline</strong>: Create attention-grabbing headlines with animated effects.</li>\n<li><strong>Price Table</strong>: Display pricing plans or packages in a structured and visually appealing format.</li>\n<li><strong>Price List</strong>: Showcase a list of prices or services with customizable styling options.</li>\n<li><strong>Gallery</strong>: Create beautiful image galleries with various layout options and lightbox support.</li>\n<li><strong>Flip Box</strong>: Add interactive flip animations to highlight content or features.</li>\n<li><strong>Call to Action</strong>: Encourage user interaction and conversions with compelling call-to-action sections.</li>\n<li><strong>Media Carousel</strong>: Showcase a carousel of media files such as images or videos.</li>\n<li><strong>Testimonial Carousel</strong>: Display client testimonials in a carousel format for social proof.</li>\n<li><strong>Nested Carousel</strong>: Create nested carousels for more complex content organization.</li>\n<li><strong>Loop Carousel</strong>: Display content in a looped carousel for continuous viewing.</li>\n<li><strong>Table Of Content</strong>: Generate a table of contents for longer articles or guides to improve navigation.</li>\n<li><strong>Countdown</strong>: Add countdown timers to create urgency for promotions or events.</li>\n<li><strong>Facebook Page</strong>: Embed your Facebook page feed or content onto your website.</li>\n<li><strong>Blockquote</strong>: Highlight quotes or testimonials with stylish formatting options.</li>\n<li><strong>Template</strong>: Save and reuse design templates for consistent branding and layout.</li>\n<li><strong>Reviews</strong>: Showcase customer reviews and ratings to build trust and credibility.</li>\n<li><strong>Facebook Button</strong>: Add buttons to promote interactions with your Facebook page or content.</li>\n<li><strong>Facebook Embed</strong>: Embed Facebook posts or content onto your website.</li>\n<li><strong>Facebook Comments</strong>: Enable Facebook comments on your website&#8217;s pages or posts.</li>\n<li><strong>PayPal Button</strong>: Integrate PayPal buttons for easy online payments.</li>\n<li><strong>Stripe Button</strong>: Integrate Stripe payment buttons to facilitate secure online transactions.</li>\n<li><strong>Lottie Widget</strong>: Add Lottie animations to enhance visual appeal and engagement.</li>\n<li><strong>Code Highlight</strong>: Display code snippets with syntax highlighting for better readability.</li>\n<li><strong>Video Playlist</strong>: Create and customize playlists for video content on your website.</li>\n<li><strong>Mega Menu</strong>: Customize advanced menus for better navigation and displaying complex content.</li>\n<li><strong>Off Canvas</strong>: Create off-canvas areas that slide in to show extra info or menus without cluttering the main layout.</li>\n</ol>\n<p><strong>Editor Pro Theme Widgets:</strong></p>\n<p>Build and customize all the key parts of your website including headers, footers, 404 page, global archives, and more&#8230;</p>\n<ol>\n<li><strong>Post Title</strong>: Customize the title of individual blog posts or pages.</li>\n<li><strong>Post Excerpt</strong>: Display a brief summary or teaser of your blog posts.</li>\n<li><strong>Post Content</strong>: Customize the main content area of your blog posts or pages.</li>\n<li><strong>Featured Image</strong>: Set and customize featured images for blog posts or pages.</li>\n<li><strong>Author Box</strong>: Display author information and bios on blog posts.</li>\n<li><strong>Post Comments</strong>: Customize the appearance and functionality of comments sections on your website.</li>\n<li><strong>Post Navigation</strong>: Add navigation links to adjacent posts for easy browsing.</li>\n<li><strong>Post Info</strong>: Display additional information about blog posts, such as author and date.</li>\n<li><strong>Site Logo</strong>: Upload and customize your website&#8217;s logo for branding purposes.</li>\n<li><strong>Site Title</strong>: Customize the title of your website.</li>\n<li><strong>Page Title</strong>: Customize the title of individual pages.</li>\n<li><strong>Search Bar</strong>: Add a search bar to allow users to search your website&#8217;s content.</li>\n<li><strong>Breadcrumbs</strong>: Display hierarchical navigation paths for better user navigation.</li>\n<li><strong>Sitemap</strong>: Generate a sitemap for better search engine indexing and user navigation.</li>\n<li><strong>Loop Grid</strong>: Design and customize grid layouts for blog post archives or product listings.</li>\n</ol>\n<p><strong>Editor Pro WooCommerce Widgets:</strong></p>\n<p>Design and customize a complete online shopping experience across your entire website.</p>\n<ol>\n<li><strong>Product</strong>: Display individual products with customizable layouts and styles.</li>\n<li><strong>Breadcrumbs</strong>: Display hierarchical navigation paths for better user navigation within your store.</li>\n<li><strong>Product Title</strong>: Customize the title of individual products.</li>\n<li><strong>Product Images</strong>: Set and customize images for product listings.</li>\n<li><strong>Product Price</strong>: Display the price of individual products.</li>\n<li><strong>Add To Cart</strong>: Add customizable add to cart buttons for easy purchasing.</li>\n<li><strong>Product Rating</strong>: Display ratings and reviews for products.</li>\n<li><strong>Product Stock</strong>: Display stock availability for products.</li>\n<li><strong>Product Meta</strong>: Display additional information about products, such as SKU and categories.</li>\n<li><strong>Product Content</strong>: Customize the main content area of product descriptions.</li>\n<li><strong>Short Description</strong>: Display brief summaries or teasers of products.</li>\n<li><strong>Product Data Tabs</strong>: Organize product information into tabbed sections for better organization.</li>\n<li><strong>Additional Information</strong>: Display additional details about products, such as dimensions and weight.</li>\n<li><strong>Product Related</strong>: Showcase related products to encourage additional purchases.</li>\n<li><strong>Upsells</strong>: Promote upsell products to increase average order value.</li>\n<li><strong>Products</strong>: Display a grid or list of products with customizable settings.</li>\n<li><strong>Custom Add To Cart</strong>: Customize the add to cart button for specific products.</li>\n<li><strong>WooCommerce Pages</strong>: Design and customize WooCommerce-specific pages, such as the cart and checkout pages.</li>\n<li><strong>Product Categories</strong>: Display product categories for easy navigation within your store.</li>\n<li><strong>Menu Cart</strong>: Display a cart icon in your navigation menu for easy access to the shopping cart.</li>\n<li><strong>Cart</strong>: Customize the appearance and functionality of the shopping cart page.</li>\n<li><strong>Checkout</strong>: Customize the appearance and functionality of the checkout page.</li>\n<li><strong>My Account</strong>: Customize the appearance and functionality of the customer account area.</li>\n<li><strong>Purchase Summary</strong>: Display a summary of purchases during the checkout process.</li>\n<li><strong>WooCommerce Notices</strong>: Customize the appearance and functionality of WooCommerce notices, such as order confirmation messages.</li>\n</ol>\n<p>Build professional websites with <strong><a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-pro-elementor-pro/\" rel=\"nofollow ugc\">Elementor Editor Pro</a></strong>!</p>\n<h4>🔒 SECURITY AND COMPLIANCE</h4>\n<p>Elementor places a paramount focus on security, evident through our acquisition of industry certifications such as ISO/IEC 27001, ISO/IEC 27017, ISO/IEC 27018, ISO/IEC 27701, and SOC 2 Type II. These certifications underscore our commitment to implementing robust security measures, and highlight our dedication to adhering to recognized industry standards.</p>\n<p>We encourage ethical security research through our <a href=\"https://go.elementor.com/wp-repo-description-tab-bug-crowd-bug-bounty-program/\" rel=\"nofollow ugc\">Bug Bounty program</a>. We collaborate with leading bug bounty services to provide opportunities for researchers to report vulnerabilities in our services. Our bounty programs include a triage team available 24/7/365.</p>\n<p>For more information: <a href=\"https://go.elementor.com/trust-center/\" rel=\"nofollow ugc\">Trust Center</a>.</p>\n<h4>♿ Accessibility Best Practices</h4>\n<p>Elementor offers accessibility tools and enhancements to help you provide a better experience for all users. Including HTML 5 semantic, full keyboard navigation menu, ongoing improvement of features, widget, and more.</p>\n<h4>🌐 Translated to 63+ languages, includes RTL support</h4>\n<p>Elementor supports multiple languages, typographies, and RTL, with editor translations in <a href=\"https://go.elementor.com/wp-repo-description-tab-wordpress-plugin-translate/\" rel=\"nofollow ugc\">over 63 languages</a>.</p>\n<p>It’s also compatible with WPML, Polylang, TranslatePress, Weglot, and more. To contribute, add a new language via <a href=\"https://translate.wordpress.org\" rel=\"nofollow ugc\">translate.wordpress.org</a>. See our guide on <a href=\"https://go.elementor.com/wp-repo-description-tab-help-center-translate/\" rel=\"nofollow ugc\">how to translate and localize the plugin</a>.</p>\n<h4>⏩ Use of 3rd Party Services</h4>\n<p>To improve the user experience, Elementor may use the following 3rd party services if the required feature is enabled:</p>\n<ul>\n<li>Google Fonts – are loaded to add additional fonts to your website. Google’s <a href=\"https://policies.google.com/terms\" rel=\"nofollow ugc\">TOS</a> and <a href=\"https://policies.google.com/privacy\" rel=\"nofollow ugc\">Privacy Policy</a> apply.</li>\n<li>Some Elementor features require loading assets from Elementor.com. These assets are not used for tracking unless explicitly mentioned, requiring your approval and manual opt-in. Learn more in our <a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-plugin-terms/\" rel=\"nofollow ugc\">TOS</a> and <a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-plugin-privacy/\" rel=\"nofollow ugc\">Privacy Policy</a>.</li>\n</ul>\n<h4>📧 Related Products by Elementor</h4>\n<p><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-io/\" rel=\"nofollow ugc\">Image Optimizer</a></strong>: Superior image compression for faster, high-quality website performance.</p>\n<p><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-sm/\" rel=\"nofollow ugc\">Site Mailer</a></strong>: Reliable email management without SMTP plugins, keeping your communications streamlined and efficient.</p>\n<p><strong><a href=\"http://go.elementor.com/editor-acc-wp-repo\" rel=\"nofollow ugc\">Ally</a></strong>: Enhances website usability for individuals with disabilities. Ally is designed to help web creators make their websites more inclusive. It scans, detects, and remediate key accessibility violations, working seamlessly on all WordPress and Elementor websites.</p>\n<h4>📣 See What Our Users Have to Say</h4>\n<blockquote>\n<p>“Elementor is hands down the best page builder out there” – ★★★★★ <em><a href=\"https://wordpress.org/support/topic/elementor-is-hands-down-the-best-page-builder-out-there/\" rel=\"ugc\">Graphicvision1</a></em></p>\n<p>“An incredibly user-friendly plugin” – ★★★★★ <em><a href=\"https://wordpress.org/support/topic/a-wonderful-experience/\" rel=\"ugc\">Hyeyoga</a></em></p>\n<p>“Easily, my most used WP plugin” –  &hellip;</p>\n</blockquote>\n\";s:12:\"installation\";s:1602:\"<h4>Minimum Requirements</h4>\n<ul>\n<li>WordPress 6.5 or greater</li>\n<li>PHP version 7.4 or greater</li>\n<li>MySQL version 5.0 or greater</li>\n</ul>\n<h4>Recommended Requirements</h4>\n<ul>\n<li>PHP version 8.1 or greater</li>\n<li>MySQL version 5.6 or greater</li>\n<li>WordPress Memory limit of 64 MB or greater (128 MB or higher is preferred)</li>\n</ul>\n<p><span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe loading=\"lazy\" class=\"youtube-player\" width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/9EZ159ryFNs?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></span></p>\n<h4>Installation</h4>\n<ol>\n<li>Install using the WordPress built-in Plugin installer, or Extract the zip file and drop the contents in the <code>wp-content/plugins/</code> directory of your WordPress installation.</li>\n<li>Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress.</li>\n<li>Go to Pages &gt; Add New</li>\n<li>Press the &#8216;Edit with Elementor&#8217; button.</li>\n<li>Now you can drag and drop widgets from the left panel onto the content area, as well as add new sections and columns that make up the page structure.</li>\n</ol>\n<p>For documentation and tutorials visit our <a href=\"https://elementor.com/help/?utm_source=wp-repo&amp;utm_medium=link&amp;utm_campaign=readme\" rel=\"nofollow ugc\">Knowledge Base</a>.</p>\n\";s:3:\"faq\";s:5070:\"\n<dt id=\"how%20do%20i%20install%20elementor%20editor%3F\">\nHow do I install Elementor Editor?\n</h4>\n<p>\n<p>To install the free version of Elementor Editor, follow the steps below:<br />\nFrom your WordPress dashboard -&gt; Go to Plugins -&gt; Click on &#8216;Add new&#8217;-&gt; In the Search field, enter Elementor and choose Elementor website builder.<br />\nPress install -&gt; After installation, click Activate.</p>\n</p>\n<dt id=\"does%20elementor%20editor%20work%20with%20all%20the%20themes%3F\">\nDoes Elementor Editor work with all the themes?\n</h4>\n<p>\n<p>Elementor Editor works all the themes that respect the coding standards of WordPress set by its Codex. It is recommended to use Elementor&#8217;s <a href=\"https://go.elementor.com/wp-repo-description-tab-hello-theme-hello-theme/\" rel=\"nofollow ugc\">Hello Theme</a>, a lightweight blank canvas, to enjoy full flexibility when using Elementor Editor, and optimize your experience.</p>\n</p>\n<dt id=\"is%20elementor%20editor%20compatible%20with%20gutenberg%3F\">\nIs Elementor Editor compatible with Gutenberg?\n</h4>\n<p>\n<p>Elementor Editor and Gutenberg work seamlessly together. As a user, you can easily decide which editor to use at every point while editing your site.</p>\n</p>\n<dt id=\"can%20i%20create%20an%20online%20store%3F\">\nCan I create an online store?\n</h4>\n<p>\n<p>Yes, with the Elementor Editor Pro WooCommerce Builder you can customize every page of your store to create an amazing customer experience that drives sales.</p>\n</p>\n<dt id=\"does%20it%20work%20with%20other%20wordpress%20plugins%3F\">\nDoes it work with other WordPress plugins?\n</h4>\n<p>\n<p>It works with almost all the plugins. If you experience an incompatibility issue, please report it to us and to the plugin that conflicts with Elementor Editor.</p>\n</p>\n<dt id=\"do%20i%20need%20to%20know%20how%20to%20code%3F\">\nDo I need to know how to code?\n</h4>\n<p>\n<p>No! Elementor Editor provides you with all the widgets and features that you need to build a professional website without using code.</p>\n</p>\n<dt id=\"do%20i%20need%20to%20know%20how%20to%20design%3F\">\nDo I need to know how to design?\n</h4>\n<p>\n<p>No, you can choose between professionally designed kits and templates that fit to every industry and have all you need to create your own professional website.</p>\n</p>\n<dt id=\"will%20elementor%20editor%20slow%20down%20my%20website%3F\">\nWill Elementor Editor slow down my website?\n</h4>\n<p>\n<p>As Elementor prioritizes speed and performance, you enjoy better and faster performance with each new version of the Editor. When testing the same page layout on older versions you can see a significant performance improvement, from a score of 82 in Google PageSpeed Insight in version 3.1, to a score of 95 i in version 3.5.</p>\n</p>\n<dt id=\"is%20my%20site%20secure%20with%20elementor%20editor%3F\">\nIs my site secure with Elementor Editor?\n</h4>\n<p>\n<p>The security of your website is extremely important to us and we take proactive measures to assure that your websites are secure. Elementor is ISO 27001 certified, and has a dedicated team of security professionals that implements industry best-practices for maximum security and compliance, 24/7.</p>\n<p>There is also a managed security Bug Bounty program, utilizing the community power by enabling 24/7/365 crowdsourced vulnerability detection.</p>\n</p>\n<dt id=\"can%20i%20buy%20templates%20separately%3F\">\nCan I buy templates separately?\n</h4>\n<p>\n<p>Of course, you can use any template that supports Elementor Editor.</p>\n</p>\n<dt id=\"is%20elementor%20editor%20compatible%20with%20post%20and%20custom%20post%20types%3F\">\nIs Elementor Editor compatible with Post and Custom Post Types?\n</h4>\n<p>\n<p>Of course! You can set which post types will enable Elementor in the settings page.</p>\n</p>\n<dt id=\"what%20is%20the%20difference%20between%20elementor%27s%20free%20editor%20plugin%20and%20elementor%20editor%20pro%3F\">\nWhat is the difference between Elementor&#8217;s free Editor plugin and Elementor Editor Pro?\n</h4>\n<p>\n<p>Elementor Editor’s Free version allows you to explore our revolutionary drag &amp; drop live editor, basic widgets and templates. Elementor Editor Pro (Essential, Advanced, Expert, Studio, and Agency) empowers you with more professional tools that speed up your workflow, give you access to human-powered support, help you build more advanced content, and convert visitors. See full comparison here.</p>\n</p>\n<dt id=\"how%20can%20i%20become%20a%20contributor%3F\">\nHow can I become a Contributor?\n</h4>\n<p>\n<p>If you want to contribute, go to our <a href=\"https://github.com/elementor/elementor\" rel=\"nofollow ugc\">Elementor GitHub Repository</a> and see where you can help.<br />\nYou can also add a new language via <a href=\"https://go.elementor.com/wp-repo-description-tab-wordpress-plugin-translate/\" rel=\"nofollow ugc\">translate.wordpress.org</a>. We’ve built a short guide explaining <a href=\"https://go.elementor.com/wp-repo-description-tab-wordpress-plugin-translate-faq/\" rel=\"nofollow ugc\">how to translate and localize the plugin</a>.</p>\n</p>\n\n\";s:9:\"changelog\";s:2788:\"<h4>4.0.1 &#8211; 2026-04-01</h4>\n<ul>\n<li>Fix: Interactions on canvas do not work across various elements &#8211; Atomic Editor</li>\n<li>Fix: Inline editing affects button width when clicking inside a Tabs content container &#8211; Atomic Editor</li>\n<li>Fix: Styling changes to atomic elements appear on canvas only after refresh in Firefox browser &#8211; Atomic Editor</li>\n<li>Fix: Importing classes with duplicate names prevents elements from being edited &#8211; Atomic Editor</li>\n</ul>\n<h4>4.0.0 &#8211; 2026-03-30</h4>\n<ul>\n<li>New: Introducing syncing between Atomic Variables, Classes and Global Styles &#8211; ensures consistent styling between Atomic elements and legacy widgets &#8211; Atomic Editor</li>\n<li>New: Introducing self-hosted Video Atomic Element &#8211; Atomic Editor</li>\n<li>New: Introducing a new onboarding flow for new Editor installations to provide better guidance for getting started</li>\n<li>Tweak: Updated Atomic Editor status to Stable &#8211; Atomic Editor</li>\n<li>Tweak: Enabled Atomic Editor by default for new websites &#8211; Atomic Editor</li>\n<li>Tweak: Added inline editing support for the Atomic Button element &#8211; Atomic Editor</li>\n<li>Tweak: Improved performance and ordering of Global Classes styles on the frontend &#8211; Atomic Editor</li>\n<li>Tweak: Improved request reliability during temporary network issues &#8211; Atomic Editor</li>\n<li>Tweak: Improved size control structure and behavior &#8211; Atomic Editor</li>\n<li>Tweak: Added support for importing and exporting Classes and Variables through website templates</li>\n<li>Tweak: Added support for importing and exporting Classes and Variables through templates</li>\n<li>Tweak: Improved accessibility in Cloud Templates modal</li>\n<li>Fix: PHP warnings in the editor when WP_DEBUG is enabled after updating to WordPress 6.9.1 (<a href=\"https://github.com/elementor/elementor/issues/34617\" rel=\"nofollow ugc\">#34617</a>, <a href=\"https://github.com/elementor/elementor/issues/34831\" rel=\"nofollow ugc\">#34831</a>)</li>\n<li>Fix: Typography modal fails to apply settings after using the &#8220;Back to default&#8221; reset option</li>\n<li>Fix: Data Updater does not run automatically after plugin updates</li>\n<li>Fix: Revision is not working as expected &#8211; Atomic Editor</li>\n<li>Fix: Styling issues in Repeater Indications popovers – Atomic Editor</li>\n<li>Fix: Selecting &#8220;auto&#8221; for size returns an incorrect value &#8211; Atomic Editor</li>\n<li>Fix: Resetting position does not clear related properties &#8211; Atomic Editor</li>\n<li>Fix: Variable name field does not auto-focus on creation in Variables &#8211; Atomic Editor</li>\n</ul>\n<p><a href=\"https://go.elementor.com/full-changelog/\" rel=\"nofollow ugc\">See changelog for all versions.</a></p>\n\";s:11:\"screenshots\";s:3162:\"<ol><li><a href=\"https://ps.w.org/elementor/assets/screenshot-1.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-1.gif?rev=3005087\" alt=\"&lt;strong&gt;Visual Drag and Drop Editor&lt;/strong&gt; - Design your website layouts and place any element anywhere on the page for pixel-perfect designs.\"></a><p><strong>Visual Drag and Drop Editor</strong> - Design your website layouts and place any element anywhere on the page for pixel-perfect designs.</p></li><li><a href=\"https://ps.w.org/elementor/assets/screenshot-2.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-2.gif?rev=3005087\" alt=\"&lt;strong&gt;Full Design System&lt;/strong&gt; - Enjoy a professional workflow and ensure consistency across your site. Define your settings, use them globally, and instantly adjust them any time.\"></a><p><strong>Full Design System</strong> - Enjoy a professional workflow and ensure consistency across your site. Define your settings, use them globally, and instantly adjust them any time.</p></li><li><a href=\"https://ps.w.org/elementor/assets/screenshot-3.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-3.gif?rev=3005087\" alt=\"&lt;strong&gt;Responsive Design&lt;/strong&gt; Fully edit your website and customize the behavior on desktop, tablet, &amp; mobile to optimize the visitor experience on every device.\"></a><p><strong>Responsive Design</strong> Fully edit your website and customize the behavior on desktop, tablet, &amp; mobile to optimize the visitor experience on every device.</p></li><li><a href=\"https://ps.w.org/elementor/assets/screenshot-4.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-4.gif?rev=3005087\" alt=\"&lt;strong&gt;Kits and Templates&lt;/strong&gt; - Jumpstart your web creation process or get inspired with professionally-designed templates or full website kits available for your immediate customization.\"></a><p><strong>Kits and Templates</strong> - Jumpstart your web creation process or get inspired with professionally-designed templates or full website kits available for your immediate customization.</p></li><li><a href=\"https://ps.w.org/elementor/assets/screenshot-5.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-5.gif?rev=3005087\" alt=\"&lt;strong&gt;Nested Elements&lt;/strong&gt; Leverage Elementor Editor&#039;s Nested widgets to place any widget inside the content area of another widget - like Tabs, and Accordion for complete design flexibility.\"></a><p><strong>Nested Elements</strong> Leverage Elementor Editor\'s Nested widgets to place any widget inside the content area of another widget - like Tabs, and Accordion for complete design flexibility.</p></li><li><a href=\"https://ps.w.org/elementor/assets/screenshot-6.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-6.gif?rev=3005087\" alt=\"&lt;strong&gt;Motion Effects&lt;/strong&gt; - Add entrance animations and transitions to any element in your website to captivate visitors.\"></a><p><strong>Motion Effects</strong> - Add entrance animations and transitions to any element in your website to captivate visitors.</p></li></ol>\";s:7:\"reviews\";s:18625:\"<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Elementor v4 is a DISASTER</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/visedfaq/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/6d5e7c04ec69011e096f0bae21ced46202ab4363753525a5d08791e417551ddb?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/6d5e7c04ec69011e096f0bae21ced46202ab4363753525a5d08791e417551ddb?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/visedfaq/\" class=\"reviewer-name\">VisedFAQ</a> on <span class=\"review-date\">April 2, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>I truly can\'t comprehend and wrap my head around the fact that you pushed such a half-baked alpha version of a product to production and called it a day. So many bugs, so many features missing, communication is almost non-existent (looking at your GitHub page) - this is a very bad look for the overall Elementor product. I don\'t know if you did this to please investors or meet some quota, but this is one of the worst product launches I\'ve ever experienced. This should have been delayed for 6-9 months at minimum so it can be <strong>at least</strong> on par with v3, currently it\'s worse than v3 in every possible way. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I am currently staying on v3 but considering switching to Bricks, because their team at least takes their product serious and test the new versions rigorously before releasing into public.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">If I could give it zero I would</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/tenerifebear/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/14aef2b82683ef1c8c06fb8eff57e97cbd19652b7286589b711f1c70a168e6a0?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/14aef2b82683ef1c8c06fb8eff57e97cbd19652b7286589b711f1c70a168e6a0?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/tenerifebear/\" class=\"reviewer-name\">tenerifebear</a> on <span class=\"review-date\">April 1, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Once again the company have given little credence to long standing customers. I have been with them from near the start. I have the Elementor Pro - Expert Subscritpion with 1000 sites.<br />So Elementor bring out a \"new\" product, which it isn\'t its an update, with shady claims, \"Beta\" versions that seemingly are, unlike ANY other company I have ever dealt with, Not beta, but a finished article etc, and what do they give long standing customers? What offers do they give to upgrade to \"Elementor One\"? Nada, nothing, zilch.<br />Between their working practices, very poor customer support and now having to learn a new system, anyway, I will be making the move to Bricks. <br />Why would ANY COMPANY, or at least any company with ethics etc, do this to a long standing and loyal group of customers?<br />Bye, Bye, elementor!!!</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Easy &amp; Powerful</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/damonmatheny7/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/f1b141a5efd2523492c2420abee6e3e6d8931b2f1c5915d5dac4b2a6d3872e8f?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/f1b141a5efd2523492c2420abee6e3e6d8931b2f1c5915d5dac4b2a6d3872e8f?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/damonmatheny7/\" class=\"reviewer-name\">damonmatheny7</a> on <span class=\"review-date\">April 1, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Been using this for a while, super easy to build pages without coding. UI feels smooth n flexible. Saved me a lot of time tbh. tnx Elementor for making things this simple 👍</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Almost everything is fine</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"4 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"4\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/budianskig/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/23a14a6140e534dff124f8b5e1cb79acfe79aacc696962b354d5220fef2bfacc?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/23a14a6140e534dff124f8b5e1cb79acfe79aacc696962b354d5220fef2bfacc?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/budianskig/\" class=\"reviewer-name\">budianskig</a> on <span class=\"review-date\">March 29, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Maybe I\'m new to this and haven\'t quite figured it all out yet, but I like everything—though sometimes the data doesn\'t always save after I publish.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">It&#039;s just too slow and clunky for 2026.</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"2 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"2\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/karlsimmer/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/9435c0d3afa1ff4749a950c241834b2abfd65f56350c7e843dd168cca80d6194?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/9435c0d3afa1ff4749a950c241834b2abfd65f56350c7e843dd168cca80d6194?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/karlsimmer/\" class=\"reviewer-name\">karlsimmer</a> on <span class=\"review-date\">March 28, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>It used to be great and I think it still is a great tool. But it has always been and probably will always be too slow. Using it just gets me triggered. I always try to follow the best practises, few plugins, reusable and repeated layouts, everything is minimal. Currently I have one Elementor page, 4 active plugins and 14 Elementor sections. Inside those sections I\'m using Grids and more sections, but only as much as I need for my layout. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I get blank screens, lag... How is this sustainable?</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">1000-site plan removed - no renewal option?</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/agumba/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/964b7038814fc4107643cae23bc25a4c63284d3267341f0c6c3f9bcbe3152067?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/964b7038814fc4107643cae23bc25a4c63284d3267341f0c6c3f9bcbe3152067?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/agumba/\" class=\"reviewer-name\">agumba</a> on <span class=\"review-date\">March 26, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>I definitely do not recommend Elementor Pro.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Anyone considering purchasing a plan should be aware of this: even if you buy a license for a single site today, there is no guarantee that the same conditions will apply tomorrow. Prices can be significantly increased, or your existing plan can be completely removed, forcing you into a different and much more expensive option.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is exactly what happened to me and many other users in a similar situation. I have been purchasing the 1000-site license consistently for the past 3 years. However, this plan was completely removed without any renewal option. Instead, users are now directed to a much more expensive “unlimited” plan, which is even presented as if it were discounted.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In order to avoid being affected, I contacted their support team and requested at least a one-time discount. However, instead of offering any kind of solution, they simply sent me a purchase link along with a screenshot of their pricing page. This clearly reflects the level of consideration given to long-term paying users.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No matter how Elementor explains it, what I am sharing here is not an exaggeration or an emotional reaction - it is a real user experience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As a result, I strongly advise anyone considering purchasing Elementor to be cautious and take this risk into account before making a decision.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">We are happy with Elementor</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/justpostit/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/65983e48981037cc5ffce8ee6b91383447aae0d4d695e9d5bbed446018452255?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/65983e48981037cc5ffce8ee6b91383447aae0d4d695e9d5bbed446018452255?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/justpostit/\" class=\"reviewer-name\">justpostit</a> on <span class=\"review-date\">March 26, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>We are happy with Elementor</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Great!</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/goldgal/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/43598e8c565bff1f6ffedd197c46104b9647bac7e3f459fc6b891ede85667964?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/43598e8c565bff1f6ffedd197c46104b9647bac7e3f459fc6b891ede85667964?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/goldgal/\" class=\"reviewer-name\">goldgal</a> on <span class=\"review-date\">March 22, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Once you get used to working with it, you won\'t want to work with any other builder. Very powerful. </p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">speed too slow</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"2 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"2\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/2fishone/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/977949cc7d5b5c661a4b3e81d92e81429b7e7b5ddce6be563ceef5844df45594?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/977949cc7d5b5c661a4b3e81d92e81429b7e7b5ddce6be563ceef5844df45594?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/2fishone/\" class=\"reviewer-name\">2fishone</a> on <span class=\"review-date\">March 18, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>building my  blog  section, speed is  too slow,whenever  iupdate the  changes it took more than 20  seconds  to respond</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Powerful Builder with Great Flexibility</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"4 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"4\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/dashaun645/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/da66a9bb97a08f0cbed50e63c157eac0509f3d744ef828dc5dd4d904efaa5848?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/da66a9bb97a08f0cbed50e63c157eac0509f3d744ef828dc5dd4d904efaa5848?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/dashaun645/\" class=\"reviewer-name\">dashaun645</a> on <span class=\"review-date\">March 16, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Elementor Website Builder makes designing pages in WordPress very easy, even without coding knowledge. The drag-and-drop editor is smooth and offers plenty of design options. While some advanced features require the pro version, the free version is still very useful for creating modern layouts. Overall, a reliable and beginner-friendly page builder.</p>\n<!-- /wp:paragraph --></div>\n</div>\n\";}s:17:\"short_description\";s:159:\"The Elementor Website Builder has it all: drag and drop page builder, Atomic Editor, pixel perfect design, global and reusable style systems, mobile r &hellip;\";s:13:\"download_link\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.0.1.zip\";s:14:\"upgrade_notice\";a:0:{}s:11:\"screenshots\";a:6:{i:1;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-1.gif?rev=3005087\";s:7:\"caption\";s:144:\"<strong>Visual Drag and Drop Editor</strong> - Design your website layouts and place any element anywhere on the page for pixel-perfect designs.\";}i:2;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-2.gif?rev=3005087\";s:7:\"caption\";s:185:\"<strong>Full Design System</strong> - Enjoy a professional workflow and ensure consistency across your site. Define your settings, use them globally, and instantly adjust them any time.\";}i:3;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-3.gif?rev=3005087\";s:7:\"caption\";s:170:\"<strong>Responsive Design</strong> Fully edit your website and customize the behavior on desktop, tablet, &amp; mobile to optimize the visitor experience on every device.\";}i:4;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-4.gif?rev=3005087\";s:7:\"caption\";s:193:\"<strong>Kits and Templates</strong> - Jumpstart your web creation process or get inspired with professionally-designed templates or full website kits available for your immediate customization.\";}i:5;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-5.gif?rev=3005087\";s:7:\"caption\";s:197:\"<strong>Nested Elements</strong> Leverage Elementor Editor\'s Nested widgets to place any widget inside the content area of another widget - like Tabs, and Accordion for complete design flexibility.\";}i:6;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-6.gif?rev=3005087\";s:7:\"caption\";s:127:\"<strong>Motion Effects</strong> - Add entrance animations and transitions to any element in your website to captivate visitors.\";}}s:4:\"tags\";a:5:{s:13:\"drag-and-drop\";s:13:\"drag-and-drop\";s:6:\"editor\";s:6:\"editor\";s:9:\"elementor\";s:9:\"elementor\";s:12:\"landing-page\";s:12:\"landing page\";s:12:\"page-builder\";s:12:\"page builder\";}s:8:\"versions\";a:419:{s:5:\"3.0.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.0.zip\";s:5:\"3.0.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.1.zip\";s:6:\"3.0.10\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.10.zip\";s:6:\"3.0.11\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.11.zip\";s:6:\"3.0.12\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.12.zip\";s:6:\"3.0.13\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.13.zip\";s:6:\"3.0.14\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.14.zip\";s:6:\"3.0.15\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.15.zip\";s:6:\"3.0.16\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.16.zip\";s:5:\"3.0.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.2.zip\";s:5:\"3.0.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.3.zip\";s:5:\"3.0.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.4.zip\";s:5:\"3.0.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.5.zip\";s:5:\"3.0.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.6.zip\";s:5:\"3.0.7\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.7.zip\";s:5:\"3.0.8\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.8.zip\";s:7:\"3.0.8.1\";s:60:\"https://downloads.wordpress.org/plugin/elementor.3.0.8.1.zip\";s:5:\"3.0.9\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.9.zip\";s:5:\"3.1.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.0.zip\";s:11:\"3.1.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-beta1.zip\";s:11:\"3.1.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-beta2.zip\";s:11:\"3.1.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-beta3.zip\";s:11:\"3.1.0-beta4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-beta4.zip\";s:10:\"3.1.0-dev1\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-dev1.zip\";s:10:\"3.1.0-dev2\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-dev2.zip\";s:10:\"3.1.0-dev3\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-dev3.zip\";s:5:\"3.1.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.1.zip\";s:5:\"3.1.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.2.zip\";s:5:\"3.1.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.3.zip\";s:5:\"3.1.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.4.zip\";s:6:\"3.10.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.10.0.zip\";s:11:\"3.10.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.10.0-dev1.zip\";s:6:\"3.10.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.10.1.zip\";s:6:\"3.10.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.10.2.zip\";s:6:\"3.11.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.0.zip\";s:12:\"3.11.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-beta1.zip\";s:12:\"3.11.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-beta2.zip\";s:12:\"3.11.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-beta3.zip\";s:11:\"3.11.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-dev1.zip\";s:11:\"3.11.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-dev2.zip\";s:11:\"3.11.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-dev3.zip\";s:6:\"3.11.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.1.zip\";s:6:\"3.11.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.2.zip\";s:6:\"3.11.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.3.zip\";s:6:\"3.11.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.4.zip\";s:6:\"3.11.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.5.zip\";s:6:\"3.12.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.12.0.zip\";s:6:\"3.12.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.12.1.zip\";s:6:\"3.12.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.12.2.zip\";s:6:\"3.13.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.13.0.zip\";s:12:\"3.13.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.13.0-beta1.zip\";s:12:\"3.13.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.13.0-beta2.zip\";s:12:\"3.13.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.13.0-beta3.zip\";s:11:\"3.13.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.13.0-dev3.zip\";s:11:\"3.13.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.13.0-dev4.zip\";s:6:\"3.13.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.13.1.zip\";s:6:\"3.13.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.13.2.zip\";s:6:\"3.13.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.13.3.zip\";s:6:\"3.13.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.13.4.zip\";s:6:\"3.14.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.14.0.zip\";s:12:\"3.14.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta1.zip\";s:12:\"3.14.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta2.zip\";s:12:\"3.14.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta3.zip\";s:12:\"3.14.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta4.zip\";s:12:\"3.14.0-beta5\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta5.zip\";s:6:\"3.14.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.14.1.zip\";s:6:\"3.15.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.15.0.zip\";s:6:\"3.15.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.15.1.zip\";s:6:\"3.15.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.15.2.zip\";s:6:\"3.15.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.15.3.zip\";s:6:\"3.16.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.0.zip\";s:12:\"3.16.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.16.0-beta3.zip\";s:12:\"3.16.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.16.0-beta4.zip\";s:11:\"3.16.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.16.0-dev1.zip\";s:11:\"3.16.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.16.0-dev2.zip\";s:6:\"3.16.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.1.zip\";s:6:\"3.16.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.2.zip\";s:6:\"3.16.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.3.zip\";s:6:\"3.16.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.4.zip\";s:6:\"3.16.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.5.zip\";s:6:\"3.16.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.6.zip\";s:6:\"3.17.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.17.0.zip\";s:11:\"3.17.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.17.0-dev2.zip\";s:11:\"3.17.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.17.0-dev3.zip\";s:11:\"3.17.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.17.0-dev4.zip\";s:6:\"3.17.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.17.1.zip\";s:6:\"3.17.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.17.2.zip\";s:6:\"3.17.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.17.3.zip\";s:6:\"3.18.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.18.0.zip\";s:12:\"3.18.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.18.0-beta1.zip\";s:12:\"3.18.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.18.0-beta2.zip\";s:12:\"3.18.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.18.0-beta3.zip\";s:12:\"3.18.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.18.0-beta4.zip\";s:11:\"3.18.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.18.0-dev1.zip\";s:6:\"3.18.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.18.1.zip\";s:6:\"3.18.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.18.2.zip\";s:6:\"3.18.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.18.3.zip\";s:6:\"3.19.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.19.0.zip\";s:12:\"3.19.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta1.zip\";s:12:\"3.19.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta2.zip\";s:12:\"3.19.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta3.zip\";s:12:\"3.19.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta4.zip\";s:12:\"3.19.0-beta5\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta5.zip\";s:12:\"3.19.0-beta6\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta6.zip\";s:11:\"3.19.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev1.zip\";s:11:\"3.19.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev2.zip\";s:11:\"3.19.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev3.zip\";s:11:\"3.19.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev4.zip\";s:11:\"3.19.0-dev5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev5.zip\";s:11:\"3.19.0-dev6\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev6.zip\";s:6:\"3.19.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.19.1.zip\";s:6:\"3.19.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.19.2.zip\";s:6:\"3.19.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.19.3.zip\";s:6:\"3.19.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.19.4.zip\";s:5:\"3.2.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.0.zip\";s:5:\"3.2.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.1.zip\";s:5:\"3.2.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.2.zip\";s:5:\"3.2.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.3.zip\";s:5:\"3.2.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.4.zip\";s:5:\"3.2.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.5.zip\";s:6:\"3.20.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.0.zip\";s:12:\"3.20.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-beta1.zip\";s:12:\"3.20.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-beta2.zip\";s:12:\"3.20.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-beta3.zip\";s:12:\"3.20.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-beta4.zip\";s:11:\"3.20.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-dev1.zip\";s:11:\"3.20.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-dev2.zip\";s:11:\"3.20.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-dev3.zip\";s:11:\"3.20.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-dev4.zip\";s:6:\"3.20.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.1.zip\";s:6:\"3.20.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.2.zip\";s:6:\"3.20.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.3.zip\";s:6:\"3.20.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.4.zip\";s:6:\"3.21.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.0.zip\";s:12:\"3.21.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-beta1.zip\";s:12:\"3.21.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-beta2.zip\";s:12:\"3.21.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-beta3.zip\";s:11:\"3.21.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-dev1.zip\";s:11:\"3.21.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-dev2.zip\";s:11:\"3.21.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-dev3.zip\";s:6:\"3.21.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.1.zip\";s:6:\"3.21.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.2.zip\";s:6:\"3.21.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.3.zip\";s:6:\"3.21.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.4.zip\";s:6:\"3.21.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.5.zip\";s:6:\"3.21.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.6.zip\";s:6:\"3.21.7\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.7.zip\";s:6:\"3.21.8\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.8.zip\";s:6:\"3.22.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.22.0.zip\";s:12:\"3.22.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta1.zip\";s:12:\"3.22.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta2.zip\";s:12:\"3.22.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta3.zip\";s:12:\"3.22.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta4.zip\";s:12:\"3.22.0-beta5\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta5.zip\";s:12:\"3.22.0-beta6\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta6.zip\";s:11:\"3.22.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev1.zip\";s:11:\"3.22.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev2.zip\";s:11:\"3.22.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev3.zip\";s:11:\"3.22.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev4.zip\";s:11:\"3.22.0-dev5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev5.zip\";s:11:\"3.22.0-dev6\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev6.zip\";s:6:\"3.22.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.22.1.zip\";s:6:\"3.22.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.22.2.zip\";s:6:\"3.22.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.22.3.zip\";s:6:\"3.23.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.23.0.zip\";s:12:\"3.23.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta1.zip\";s:12:\"3.23.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta2.zip\";s:12:\"3.23.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta3.zip\";s:12:\"3.23.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta4.zip\";s:12:\"3.23.0-beta5\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta5.zip\";s:12:\"3.23.0-beta6\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta6.zip\";s:11:\"3.23.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev1.zip\";s:11:\"3.23.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev2.zip\";s:11:\"3.23.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev3.zip\";s:11:\"3.23.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev4.zip\";s:11:\"3.23.0-dev5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev5.zip\";s:11:\"3.23.0-dev6\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev6.zip\";s:6:\"3.23.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.23.1.zip\";s:6:\"3.23.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.23.2.zip\";s:6:\"3.23.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.23.3.zip\";s:6:\"3.23.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.23.4.zip\";s:6:\"3.24.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.0.zip\";s:12:\"3.24.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-beta1.zip\";s:12:\"3.24.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-beta2.zip\";s:12:\"3.24.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-beta3.zip\";s:11:\"3.24.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-dev1.zip\";s:11:\"3.24.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-dev2.zip\";s:11:\"3.24.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-dev3.zip\";s:6:\"3.24.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.1.zip\";s:6:\"3.24.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.2.zip\";s:6:\"3.24.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.3.zip\";s:6:\"3.24.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.4.zip\";s:6:\"3.24.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.5.zip\";s:6:\"3.24.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.6.zip\";s:6:\"3.24.7\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.7.zip\";s:6:\"3.24.8\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.8.zip\";s:6:\"3.25.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.0.zip\";s:12:\"3.25.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-beta1.zip\";s:12:\"3.25.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-beta2.zip\";s:12:\"3.25.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-beta3.zip\";s:11:\"3.25.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-dev1.zip\";s:11:\"3.25.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-dev2.zip\";s:11:\"3.25.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-dev3.zip\";s:6:\"3.25.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.1.zip\";s:7:\"3.25.10\";s:60:\"https://downloads.wordpress.org/plugin/elementor.3.25.10.zip\";s:7:\"3.25.11\";s:60:\"https://downloads.wordpress.org/plugin/elementor.3.25.11.zip\";s:6:\"3.25.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.2.zip\";s:6:\"3.25.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.3.zip\";s:6:\"3.25.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.4.zip\";s:6:\"3.25.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.5.zip\";s:6:\"3.25.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.6.zip\";s:6:\"3.25.7\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.7.zip\";s:6:\"3.25.8\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.8.zip\";s:6:\"3.25.9\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.9.zip\";s:6:\"3.26.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.0.zip\";s:12:\"3.26.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta1.zip\";s:12:\"3.26.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta2.zip\";s:12:\"3.26.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta3.zip\";s:12:\"3.26.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta4.zip\";s:12:\"3.26.0-beta5\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta5.zip\";s:11:\"3.26.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev1.zip\";s:11:\"3.26.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev2.zip\";s:11:\"3.26.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev3.zip\";s:11:\"3.26.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev4.zip\";s:11:\"3.26.0-dev5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev5.zip\";s:6:\"3.26.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.1.zip\";s:6:\"3.26.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.2.zip\";s:6:\"3.26.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.3.zip\";s:6:\"3.26.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.4.zip\";s:6:\"3.26.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.5.zip\";s:6:\"3.27.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.0.zip\";s:12:\"3.27.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.27.0-beta1.zip\";s:12:\"3.27.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.27.0-beta2.zip\";s:11:\"3.27.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.27.0-dev1.zip\";s:11:\"3.27.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.27.0-dev2.zip\";s:6:\"3.27.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.1.zip\";s:6:\"3.27.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.2.zip\";s:6:\"3.27.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.3.zip\";s:6:\"3.27.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.4.zip\";s:6:\"3.27.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.5.zip\";s:6:\"3.27.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.6.zip\";s:6:\"3.27.7\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.7.zip\";s:6:\"3.28.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.0.zip\";s:12:\"3.28.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-beta1.zip\";s:12:\"3.28.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-beta2.zip\";s:12:\"3.28.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-beta3.zip\";s:11:\"3.28.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-dev1.zip\";s:11:\"3.28.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-dev2.zip\";s:11:\"3.28.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-dev3.zip\";s:6:\"3.28.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.1.zip\";s:6:\"3.28.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.2.zip\";s:6:\"3.28.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.3.zip\";s:6:\"3.28.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.4.zip\";s:6:\"3.29.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.29.0.zip\";s:12:\"3.29.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-beta1.zip\";s:12:\"3.29.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-beta2.zip\";s:12:\"3.29.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-beta3.zip\";s:12:\"3.29.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-beta4.zip\";s:11:\"3.29.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-dev1.zip\";s:11:\"3.29.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-dev2.zip\";s:11:\"3.29.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-dev3.zip\";s:11:\"3.29.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-dev4.zip\";s:6:\"3.29.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.29.1.zip\";s:6:\"3.29.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.29.2.zip\";s:5:\"3.3.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.3.0.zip\";s:5:\"3.3.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.3.1.zip\";s:6:\"3.30.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.30.0.zip\";s:12:\"3.30.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-beta1.zip\";s:12:\"3.30.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-beta2.zip\";s:12:\"3.30.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-beta3.zip\";s:11:\"3.30.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-dev1.zip\";s:11:\"3.30.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-dev2.zip\";s:11:\"3.30.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-dev3.zip\";s:6:\"3.30.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.30.1.zip\";s:6:\"3.30.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.30.2.zip\";s:6:\"3.30.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.30.3.zip\";s:6:\"3.30.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.30.4.zip\";s:6:\"3.31.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.31.0.zip\";s:12:\"3.31.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.31.0-beta1.zip\";s:12:\"3.31.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.31.0-beta2.zip\";s:11:\"3.31.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.31.0-dev1.zip\";s:11:\"3.31.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.31.0-dev2.zip\";s:6:\"3.31.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.31.1.zip\";s:6:\"3.31.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.31.2.zip\";s:6:\"3.31.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.31.3.zip\";s:6:\"3.31.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.31.4.zip\";s:6:\"3.31.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.31.5.zip\";s:6:\"3.32.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.0.zip\";s:12:\"3.32.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.32.0-beta1.zip\";s:12:\"3.32.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.32.0-beta2.zip\";s:12:\"3.32.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.32.0-beta3.zip\";s:11:\"3.32.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.32.0-dev1.zip\";s:11:\"3.32.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.32.0-dev2.zip\";s:11:\"3.32.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.32.0-dev3.zip\";s:6:\"3.32.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.1.zip\";s:6:\"3.32.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.2.zip\";s:6:\"3.32.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.3.zip\";s:6:\"3.32.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.4.zip\";s:6:\"3.32.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.5.zip\";s:6:\"3.33.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.0.zip\";s:12:\"3.33.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-beta1.zip\";s:12:\"3.33.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-beta2.zip\";s:12:\"3.33.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-beta3.zip\";s:12:\"3.33.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-beta4.zip\";s:11:\"3.33.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-dev1.zip\";s:11:\"3.33.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-dev2.zip\";s:11:\"3.33.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-dev3.zip\";s:11:\"3.33.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-dev4.zip\";s:6:\"3.33.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.1.zip\";s:6:\"3.33.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.2.zip\";s:6:\"3.33.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.3.zip\";s:6:\"3.33.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.4.zip\";s:6:\"3.33.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.5.zip\";s:6:\"3.33.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.6.zip\";s:6:\"3.34.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.34.0.zip\";s:12:\"3.34.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.34.0-beta1.zip\";s:12:\"3.34.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.34.0-beta2.zip\";s:12:\"3.34.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.34.0-beta3.zip\";s:11:\"3.34.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.34.0-dev1.zip\";s:11:\"3.34.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.34.0-dev2.zip\";s:6:\"3.34.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.34.1.zip\";s:6:\"3.34.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.34.2.zip\";s:6:\"3.34.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.34.3.zip\";s:6:\"3.34.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.34.4.zip\";s:6:\"3.35.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.0.zip\";s:12:\"3.35.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-beta1.zip\";s:12:\"3.35.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-beta2.zip\";s:12:\"3.35.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-beta3.zip\";s:12:\"3.35.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-beta4.zip\";s:11:\"3.35.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-dev1.zip\";s:11:\"3.35.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-dev2.zip\";s:11:\"3.35.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-dev3.zip\";s:11:\"3.35.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-dev4.zip\";s:6:\"3.35.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.1.zip\";s:6:\"3.35.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.2.zip\";s:6:\"3.35.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.3.zip\";s:6:\"3.35.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.4.zip\";s:6:\"3.35.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.5.zip\";s:6:\"3.35.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.6.zip\";s:6:\"3.35.7\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.7.zip\";s:6:\"3.35.8\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.8.zip\";s:6:\"3.35.9\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.9.zip\";s:5:\"3.4.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.0.zip\";s:10:\"3.4.0-dev7\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.4.0-dev7.zip\";s:10:\"3.4.0-dev8\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.4.0-dev8.zip\";s:10:\"3.4.0-dev9\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.4.0-dev9.zip\";s:5:\"3.4.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.1.zip\";s:5:\"3.4.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.2.zip\";s:5:\"3.4.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.3.zip\";s:5:\"3.4.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.4.zip\";s:5:\"3.4.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.5.zip\";s:5:\"3.4.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.6.zip\";s:5:\"3.4.7\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.7.zip\";s:5:\"3.4.8\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.8.zip\";s:5:\"3.5.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.0.zip\";s:11:\"3.5.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta1.zip\";s:11:\"3.5.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta2.zip\";s:11:\"3.5.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta3.zip\";s:11:\"3.5.0-beta4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta4.zip\";s:11:\"3.5.0-beta5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta5.zip\";s:11:\"3.5.0-beta7\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta7.zip\";s:11:\"3.5.0-beta8\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta8.zip\";s:10:\"3.5.0-dev8\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-dev8.zip\";s:10:\"3.5.0-dev9\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-dev9.zip\";s:5:\"3.5.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.1.zip\";s:5:\"3.5.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.2.zip\";s:5:\"3.5.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.3.zip\";s:5:\"3.5.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.4.zip\";s:5:\"3.5.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.5.zip\";s:5:\"3.5.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.6.zip\";s:5:\"3.6.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:11:\"3.6.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta1.zip\";s:11:\"3.6.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta2.zip\";s:11:\"3.6.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta3.zip\";s:11:\"3.6.0-beta4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta4.zip\";s:11:\"3.6.0-beta5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta5.zip\";s:10:\"3.6.0-dev1\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-dev1.zip\";s:11:\"3.6.0-dev10\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-dev10.zip\";s:5:\"3.6.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.1.zip\";s:5:\"3.6.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.2.zip\";s:5:\"3.6.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.3.zip\";s:5:\"3.6.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.4.zip\";s:5:\"3.6.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.5.zip\";s:5:\"3.6.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.6.zip\";s:5:\"3.6.7\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.7.zip\";s:5:\"3.6.8\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.8.zip\";s:5:\"3.7.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.0.zip\";s:11:\"3.7.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta1.zip\";s:11:\"3.7.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta2.zip\";s:11:\"3.7.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta3.zip\";s:11:\"3.7.0-beta4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta4.zip\";s:10:\"3.7.0-dev1\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-dev1.zip\";s:5:\"3.7.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.1.zip\";s:5:\"3.7.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.2.zip\";s:5:\"3.7.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.3.zip\";s:5:\"3.7.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.4.zip\";s:5:\"3.7.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.5.zip\";s:5:\"3.7.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.6.zip\";s:5:\"3.7.7\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.7.zip\";s:5:\"3.7.8\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.8.zip\";s:5:\"3.8.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.8.0.zip\";s:11:\"3.8.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.8.0-beta1.zip\";s:11:\"3.8.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.8.0-beta2.zip\";s:11:\"3.8.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.8.0-beta3.zip\";s:5:\"3.8.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.8.1.zip\";s:5:\"3.9.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.9.0.zip\";s:5:\"3.9.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.9.1.zip\";s:5:\"3.9.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.9.2.zip\";s:5:\"4.0.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.0.0.zip\";s:11:\"4.0.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.4.0.0-beta1.zip\";s:11:\"4.0.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.4.0.0-beta2.zip\";s:11:\"4.0.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.4.0.0-beta3.zip\";s:11:\"4.0.0-beta4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.4.0.0-beta4.zip\";s:10:\"4.0.0-dev1\";s:63:\"https://downloads.wordpress.org/plugin/elementor.4.0.0-dev1.zip\";s:10:\"4.0.0-dev2\";s:63:\"https://downloads.wordpress.org/plugin/elementor.4.0.0-dev2.zip\";s:10:\"4.0.0-dev3\";s:63:\"https://downloads.wordpress.org/plugin/elementor.4.0.0-dev3.zip\";s:10:\"4.0.0-dev4\";s:63:\"https://downloads.wordpress.org/plugin/elementor.4.0.0-dev4.zip\";s:5:\"4.0.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.0.1.zip\";s:5:\"trunk\";s:52:\"https://downloads.wordpress.org/plugin/elementor.zip\";}s:14:\"business_model\";s:10:\"commercial\";s:14:\"repository_url\";s:0:\"\";s:22:\"commercial_support_url\";s:94:\"https://elementor.com/support/?utm_source=wp-repo&utm_medium=link&utm_campaign=premium-support\";s:11:\"donate_link\";s:0:\"\";s:7:\"banners\";a:2:{s:3:\"low\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3443226\";s:4:\"high\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3443226\";}s:5:\"icons\";a:2:{s:2:\"1x\";s:62:\"https://ps.w.org/elementor/assets/icon-128x128.gif?rev=3444228\";s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.gif?rev=3444228\";}s:12:\"preview_link\";s:0:\"\";s:4:\"Name\";s:63:\"Elementor Website Builder &#8211; more than just a page builder\";}}', 'off');
INSERT INTO `wpd_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(152, 'recently_activated', 'a:2:{s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:1775571235;s:35:\"litespeed-cache/litespeed-cache.php\";i:1775570848;}', 'off'),
(248, '_transient__elementor_ab_test_plg_site_mailer_submission', '2', 'off'),
(250, '_elementor_settings_update_time', '1775373173', 'auto'),
(247, '_transient_timeout__elementor_ab_test_plg_site_mailer_submission', '1783149157', 'off'),
(179, 'finished_updating_comment_type', '1', 'auto'),
(158, 'elementor_active_kit', '6', 'auto'),
(159, 'elementor_font_display', 'swap', 'auto'),
(171, '_elementor_onboarding_strings_en', 'a:2:{s:7:\"timeout\";i:1775564747;s:5:\"value\";s:4780:\"{\"common.continue\":\"Continue\",\"common.skip\":\"Skip\",\"common.back\":\"Back\",\"common.finish\":\"Finish\",\"common.loading\":\"Loading\\u2026\",\"common.upgrade\":\"Upgrade\",\"common.close_onboarding\":\"Close onboarding\",\"common.installed\":\"Installed\",\"common.recommended\":\"Recommended\",\"error.failed_mark_exit\":\"Failed to mark user exit.\",\"error.failed_complete_step\":\"Failed to complete step.\",\"error.pro_install_failed\":\"Couldn\'t install Elementor Pro. Please try again later\",\"error.theme_install_failed\":\"Theme installation didn\'t complete. Please try again later\",\"login.title\":\"Let\\u2019s get to work.\",\"login.sign_in\":\"Sign in to Elementor\",\"login.continue_another_way\":\"Continue another way\",\"login.continue_as_guest\":\"Continue as a guest\",\"steps.building_for.title\":\"Who are you building for?\",\"steps.building_for.greeting_with_name\":\"Hey %1$s %2$s Let\\u2019s get your site set up.\",\"steps.building_for.greeting_without_name\":\"Hey%s Let\\u2019s get your site set up.\",\"steps.building_for.option_myself\":\"Myself or someone I know\",\"steps.building_for.option_business\":\"My business or workplace\",\"steps.building_for.option_client\":\"A client\",\"steps.building_for.option_exploring\":\"Just exploring\",\"steps.site_about.title\":\"What is your site about?\",\"steps.site_about.subtitle\":\"Choose anything that applies.\",\"steps.site_about.option_small_med_business\":\"Small-Med Business\",\"steps.site_about.option_online_store\":\"Online store\",\"steps.site_about.option_company_site\":\"Company site\",\"steps.site_about.option_blog\":\"Blog\",\"steps.site_about.option_landing_page\":\"Landing page\",\"steps.site_about.option_booking\":\"Booking\",\"steps.site_about.option_organization\":\"Organization\",\"steps.site_about.option_other\":\"Other\",\"steps.site_about.greeting_myself\":\"Got it! We\\u2019ll keep things simple.\",\"steps.site_about.greeting_business\":\"Great! Let\\u2019s set up your business site.\",\"steps.site_about.greeting_client\":\"Nice! Let\\u2019s create something for your client.\",\"steps.site_about.greeting_fallback\":\"Let\\u2019s get started!\",\"steps.experience_level.title\":\"How experienced are you with Elementor?\",\"steps.experience_level.subtitle\":\"This helps us adjust the editor to your workflow.\",\"steps.experience_level.option_beginner\":\"I\\u2019m just getting started\",\"steps.experience_level.option_intermediate\":\"I have some experience\",\"steps.experience_level.option_advanced\":\"I\\u2019m very comfortable with Elementor\",\"steps.theme_selection.title\":\"Start with a theme that fits your needs\",\"steps.theme_selection.subtitle\":\"Hello themes are built to work seamlessly with Elementor.\",\"steps.theme_selection.aria_label\":\"Theme selection\",\"steps.theme_selection.theme_hello_label\":\"Hello\",\"steps.theme_selection.theme_hello_description\":\"A flexible canvas theme you can shape from the ground up\",\"steps.theme_selection.theme_hello_biz_label\":\"Hello Biz\",\"steps.theme_selection.theme_hello_biz_description\":\"A ready-to-start theme with smart layouts and widgets\",\"steps.theme_selection.greeting_beginner\":\"Glad you\\u2019re here!\",\"steps.theme_selection.greeting_default\":\"Great. Let\\u2019s take it to the next step\",\"steps.theme_selection.continue_with_theme\":\"Continue with this theme\",\"steps.site_features.title\":\"What do you want to include in your site?\",\"steps.site_features.subtitle\":\"We\\u2019ll use this to tailor suggestions for you.\",\"steps.site_features.continue_with_free\":\"Continue with Free\",\"steps.site_features.option_classes_variables\":\"Design system\",\"steps.site_features.option_interactions\":\"Interactions\",\"steps.site_features.option_theme_builder\":\"Theme builder\",\"steps.site_features.option_lead_collection\":\"Forms & leads\",\"steps.site_features.option_custom_code\":\"Custom Code\",\"steps.site_features.option_email_deliverability\":\"Email delivery\",\"steps.site_features.option_ai_generator\":\"AI tools\",\"steps.site_features.option_image_optimization\":\"Image optimization\",\"steps.site_features.option_accessibility_tools\":\"Accessibility\",\"steps.site_features.woocommerce\":\"WooCommerce\",\"steps.site_features.included\":\"Included\",\"steps.site_features.plan_recommendation_one\":\"Nice picks \\ud83d\\ude42 Elementor One has you covered.\",\"steps.site_features.plan_recommendation_pro\":\"Advanced tools? Elementor Pro includes them.\",\"steps.site_features.compare_plans\":\"View plans\",\"pro_install.title\":\"You already have a Pro subscription\",\"pro_install.subtitle\":\"Would you like to install it on this site now?\",\"pro_install.installing\":\"Installing Elementor Pro\\u2026\",\"pro_install.installing_short\":\"Installing\\u2026\",\"pro_install.install_button\":\"Install Pro on this site\",\"pro_install.logo_alt\":\"Elementor + Elementor Pro\",\"pro_install.do_it_later\":\"I\\u2019ll do it later\",\"completion.title\":\"Getting things ready\",\"completion.subtitle\":\"Tailoring the editor to your goals and workflow\\u2026\"}\";}', 'off'),
(162, 'elementor_landing_pages_activation', '0', 'auto'),
(163, '_elementor_pro_free_trial_data', 'a:2:{s:7:\"timeout\";i:1775376355;s:5:\"value\";s:575:\"[{\"status\":\"inactive\",\"heading\":\"You\\u2019ve come this far. Why stop here?\",\"subheading\":\"Elementor Pro Free Trial\",\"introduction\":\"Take your site beyond the basics with a free 7-day Elementor Pro trial with no strings attached:\",\"listItems\":[\"100+ widgets\",\"Theme Builder\",\"Advanced design controls\",\"Custom CSS for pixel-perfect sites - and more\"],\"ctaText\":\"Unlock my free trial\",\"ctaUrl\":\"https:\\/\\/go.elementor.com\\/go-pro-free-trial-popup\\/\",\"secondaryAction\":\"Not now\",\"image\":\"https:\\/\\/assets.elementor.com\\/pro-free-trial-popup\\/v1\\/images\\/free_trial_banner.png\"}]\";}', 'off'),
(164, 'elementor_checklist', '{\"last_opened_timestamp\":null,\"first_closed_checklist_in_editor\":true,\"is_popup_minimized\":false,\"steps\":{\"add_logo\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"set_fonts_and_colors\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"create_pages\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"setup_header\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"assign_homepage\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"setup_header_pro\":{\"is_marked_completed\":false,\"is_immutable_completed\":false}},\"should_open_in_editor\":false}', 'auto'),
(165, 'elementor_version', '4.0.1', 'auto'),
(166, 'elementor_install_history', 'a:1:{s:5:\"4.0.1\";i:1775372755;}', 'auto'),
(167, 'elementor_events_db_version', '1.0.0', 'off'),
(169, 'elementor_atomic_widgets_db_version', '1', 'auto'),
(170, 'elementor_global_classes_db_version', '1', 'auto'),
(172, '_elementor_installed_time', '1775372765', 'auto'),
(173, 'elementor_connect_site_key', '2e641e586d135c51a2da43fb487c7224', 'auto'),
(174, 'elementor_remote_info_feed_data', 'a:3:{i:0;a:5:{s:5:\"title\";s:43:\"Introducing Angie: Agentic AI for WordPress\";s:7:\"excerpt\";s:365:\"Meet Angie, agentic AI purpose-built for WordPress. Angie understands your site, connects to your tools, and takes real actions on your behalf. Its first capability, Angie Code, lets you describe any WordPress feature you can imagine and have it built for you in minutes. Production-ready, fully integrated with your site, and safe to test before it ever goes live.\";s:7:\"created\";i:1774270910;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:142:\"https://elementor.com/blog/introducing-angie-agentic-ai-for-wordpress/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:59:\"The atomic foundation of version 4 is ready for real sites!\";s:7:\"excerpt\";s:296:\"The alpha phase is complete. Version 4 is now in beta, and the atomic foundation is ready to be used on real sites! This is the final step before the official release of version 4.0, activating the new features automatically on new sites, and becoming the default editing experience in Elementor.\";s:7:\"created\";i:1770651621;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:113:\"https://elementor.com/blog/editor-4-beta/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:79:\"Introducing Elementor 3.33: Variables Manager, Custom CSS, Blend Modes, & more!\";s:7:\"excerpt\";s:340:\"Elementor 3.33 builds on the foundation of Editor V4, continuing our mission to create a faster, more scalable, and more intuitive design experience for Web Creators. With the addition of the Variables Manager, element-level Custom CSS, Background Clipping, and Blend Modes, designers have more creative precision and consistency than ever.\";s:7:\"created\";i:1762944115;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:145:\"https://elementor.com/blog/elementor-333-v4-variables-manager-custom-css/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}', 'off'),
(189, '_elementor_pro_api_requests_lock', 'a:2:{s:11:\"get_version\";i:1775571263;s:16:\"get_license_data\";i:1775540574;}', 'auto'),
(184, 'elementor_pro_version', '4.0.1', 'auto'),
(185, 'elementor_pro_install_history', 'a:2:{s:6:\"3.25.4\";i:1775372813;s:5:\"4.0.1\";i:1775381923;}', 'auto'),
(186, 'widget_elementor-library', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(187, '_elementor_pro_installed_time', '1775372814', 'auto'),
(188, 'elementor_submissions_db_version', '5', 'auto'),
(264, 'elementor_validate_api_data', '', 'auto'),
(263, 'elementor_pro_mailchimp_api_key', '', 'auto'),
(198, 'edd_sl_0db1b5f4838f5bc5af637174ef14407d', 'a:2:{s:7:\"timeout\";i:1775571737;s:5:\"value\";s:2283:\"{\"new_version\":\"2.12.18\",\"stable_version\":\"2.12.18\",\"name\":\"PowerPack Elements\",\"slug\":\"powerpack-elements\",\"url\":\"https:\\/\\/powerpackelements.com\\/downloads\\/powerpack-elements\\/?changelog=1\",\"last_updated\":\"2026-04-01 06:51:01\",\"homepage\":\"https:\\/\\/powerpackelements.com\",\"package\":\"https:\\/\\/powerpackelements.com\\/edd-sl\\/package_download\\/MTc3NTc1MzUzNzo4MjAzNTdiMjdiZWRiOWJmMzFjZjQ3Yzk4ZjVhMDRiMToxMDU1OjFmOWQ0Mjg2ZTM4NDAxYjhhNmU0ODdlYWRjZGM2Mzk3Omh0dHBzQC8vbXJhcmlmLm1lL2Ryc2FyYWg6MA==\",\"download_link\":\"https:\\/\\/powerpackelements.com\\/edd-sl\\/package_download\\/MTc3NTc1MzUzNzo4MjAzNTdiMjdiZWRiOWJmMzFjZjQ3Yzk4ZjVhMDRiMToxMDU1OjFmOWQ0Mjg2ZTM4NDAxYjhhNmU0ODdlYWRjZGM2Mzk3Omh0dHBzQC8vbXJhcmlmLm1lL2Ryc2FyYWg6MA==\",\"sections\":{\"changelog\":\"<p>Visit\\u00a0<a href=\\\"https:\\/\\/powerpackelements.com\\/change-logs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">changelogs page<\\/a> for details.<\\/p>\\n\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"icons\":{\"1x\":\"https:\\/\\/powerpackelements.com\\/wp-content\\/uploads\\/edd\\/2019\\/02\\/pp-feature-128x128.png\",\"2x\":\"https:\\/\\/powerpackelements.com\\/wp-content\\/uploads\\/edd\\/2019\\/02\\/pp-feature-256x256.png\"},\"contributors\":{\"ideaboxcreations\":{\"display_name\":\"ideaboxcreations\",\"profile\":\"\\/\\/profiles.wordpress.org\\/ideaboxcreations\",\"avatar\":\"https:\\/\\/wordpress.org\\/grav-redirect.php?user=ideaboxcreations\"},\"bloompixel\":{\"display_name\":\"bloompixel\",\"profile\":\"\\/\\/profiles.wordpress.org\\/bloompixel\",\"avatar\":\"https:\\/\\/wordpress.org\\/grav-redirect.php?user=bloompixel\"},\"simrandeep\":{\"display_name\":\"simrandeep\",\"profile\":\"\\/\\/profiles.wordpress.org\\/simrandeep\",\"avatar\":\"https:\\/\\/wordpress.org\\/grav-redirect.php?user=simrandeep\"},\"ibachal\":{\"display_name\":\"ibachal\",\"profile\":\"\\/\\/profiles.wordpress.org\\/ibachal\",\"avatar\":\"https:\\/\\/wordpress.org\\/grav-redirect.php?user=ibachal\"},\"puneetsahalot\":{\"display_name\":\"puneetsahalot\",\"profile\":\"\\/\\/profiles.wordpress.org\\/puneetsahalot\",\"avatar\":\"https:\\/\\/wordpress.org\\/grav-redirect.php?user=puneetsahalot\"}},\"tested\":\"6.7.1\",\"changelog\":[\"<p>Visit\\u00a0<a href=\\\"https:\\/\\/powerpackelements.com\\/change-logs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">changelogs page<\\/a> for details.<\\/p>\\n\"],\"plugin\":\"powerpack-elements\\/powerpack-elements.php\",\"id\":\"powerpack-elements\\/powerpack-elements.php\"}\";}', 'off'),
(234, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}', 'off'),
(208, 'bsf_usage_migrated', '1', 'off'),
(209, 'astra-settings', 'a:25:{s:18:\"theme-auto-version\";s:6:\"4.12.6\";s:22:\"is_theme_queue_running\";b:0;s:14:\"font-family-h2\";s:7:\"inherit\";s:20:\"headings-font-family\";s:25:\"\'Playfair Display\', serif\";s:21:\"headings-font-variant\";s:11:\"400,600,800\";s:12:\"font-size-h1\";a:6:{s:7:\"desktop\";i:43;s:6:\"tablet\";i:30;s:6:\"mobile\";i:30;s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h2\";a:6:{s:7:\"desktop\";i:35;s:6:\"tablet\";i:25;s:6:\"mobile\";i:25;s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h3\";a:6:{s:7:\"desktop\";i:29;s:6:\"tablet\";i:20;s:6:\"mobile\";i:20;s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h4\";a:6:{s:7:\"desktop\";i:25;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h5\";a:6:{s:7:\"desktop\";i:21;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h6\";a:6:{s:7:\"desktop\";i:17;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:16:\"body-font-family\";s:18:\"\'Lato\', sans-serif\";s:16:\"body-font-weight\";s:3:\"400\";s:37:\"site-layout-outside-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-5)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:25:\"content-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:20:\"global-color-palette\";a:2:{s:7:\"palette\";a:9:{i:0;s:7:\"#0b6623\";i:1;s:7:\"#d2b48c\";i:2;s:7:\"#08203e\";i:3;s:7:\"#656565\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#f5f5dc\";i:6;s:7:\"#111111\";i:7;s:7:\"#D1D5DB\";i:8;s:7:\"#111111\";}s:4:\"flag\";b:1;}s:12:\"button-color\";s:25:\"var(--ast-global-color-2)\";s:14:\"button-h-color\";s:25:\"var(--ast-global-color-2)\";s:15:\"button-bg-color\";s:25:\"var(--ast-global-color-0)\";s:17:\"button-bg-h-color\";s:25:\"var(--ast-global-color-1)\";s:20:\"theme-button-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:2:\"13\";s:5:\"right\";s:2:\"37\";s:6:\"bottom\";s:2:\"13\";s:4:\"left\";s:2:\"37\";}s:6:\"tablet\";a:4:{s:3:\"top\";i:14;s:5:\"right\";i:28;s:6:\"bottom\";i:14;s:4:\"left\";i:28;}s:6:\"mobile\";a:4:{s:3:\"top\";i:12;s:5:\"right\";i:24;s:6:\"bottom\";i:12;s:4:\"left\";i:24;}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:20:\"button-radius-fields\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:18:\"font-family-button\";s:18:\"\'Lato\', sans-serif\";s:18:\"font-weight-button\";s:7:\"inherit\";s:16:\"font-size-button\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}}', 'on'),
(210, 'allowed_astra_notices', 'a:2:{i:0;s:21:\"astra-sites-on-active\";i:1;s:18:\"astra-optin-notice\";}', 'auto'),
(211, 'astra_usage_installed_time', '1775372900', 'off'),
(1295, '_transient_timeout_astra-theme-cron-test-ok', '1775574342', 'off'),
(1296, '_transient_astra-theme-cron-test-ok', '1', 'off'),
(235, 'e_editor_counter', '29', 'auto'),
(236, '_elementor_notifications_data', 'a:2:{s:7:\"timeout\";i:1775584307;s:5:\"value\";s:8561:\"[{\"id\":\"4.0-default\",\"title\":\"The new default\",\"description\":\"New sites now start with version 4.0 and atomic features enabled by default. Existing sites can choose to manually activate. Nothing happens to your existing layouts and sites.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/4.0-default.png\",\"chipTags\":[\"Atomic Editor\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.0-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"4.0-atomic-forms\",\"title\":\"Atomic Forms\",\"description\":\"Build forms as part of your layout, not separate widgets. Create flexible, multi-column designs, nest elements freely, and maintain full control with the same atomic system and styling logic.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/4.0-atomic-form.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"Atomic Editor\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.0-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"4.0-atomic-forms\",\"title\":\"Atomic Forms\",\"description\":\"Build forms as part of your layout, not separate widgets. Create flexible, multi-column designs, nest elements freely, and maintain full control with the same atomic system and styling logic.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.33-custom-css.png\",\"chipTags\":[\"Atomic Editor\"],\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.0-atomic-forms\\/\"},{\"id\":\"4.0-interactions\",\"title\":\"Pro Interactions\",\"description\":\"Create advanced, lightweight motion inside the Editor. Define behavior visually, keep everything system-based, and deliver engaging experiences without bloated scripts or external tools.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/4.0-interactions.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"Atomic Editor\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.0-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"4.0-interactions\",\"title\":\"Pro Interactions\",\"description\":\"Create advanced, lightweight motion inside the Editor. Define behavior visually, keep everything system-based, and deliver engaging experiences without bloated scripts or external tools.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/4.0-interactions.png\",\"chipTags\":[\"Atomic Editor\"],\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.0-interactions\\/\"},{\"id\":\"4.0-sync-design-system\",\"title\":\"Sync and share design systems\",\"description\":\"Export and import Variables and Classes between sites, and sync them with v3 Global Styles. Maintain a consistent design system across projects and across versions.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/4.0-sync-design-system.png\",\"chipTags\":[\"Atomic Editor\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.0-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"angie-launch\",\"title\":\"Introducing Angie Code.\",\"description\":\"Create custom Elementor widgets, and snippets for custom site functionality from a simple description. Built natively for WordPress, and Elementor. Preview safely, refine through conversation, and publish when ready.\",\"topic\":\"Angie Code\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/angie-launch.png\",\"chipTags\":[\"New launch\"],\"link\":\"https:\\/\\/go.elementor.com\\/ai-notification-angie-launch\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"partner-program\",\"title\":\"Partner with Elementor. Grow your business.\",\"description\":\"Join to unlock exclusive access, secure visibility, benefit from marketing opportunities, and create additional revenue from the work you have already done. Join for free and start benefiting!\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/notification-partner.png\",\"chipTags\":[\"Partner Program\"],\"cta\":\"Apply now\",\"ctaLink\":\"https:\\/\\/my.elementor.com\\/agency\\/\"},{\"id\":\"manage-launch\",\"title\":\"Introducing Manage\",\"description\":\"Monitor, optimize and maintain all your sites from one centralized dashboard. Track performance, perform bulk updates and detect security risks to stay ahead of issues.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/manage.png\",\"chipTags\":[\"New Launch\"],\"cta\":\"Start free\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/manage\\/whatsnew\"},{\"id\":\"components-3.35\",\"title\":\"Components\",\"description\":\"Build modular, reusable sections that update everywhere and decide how much control to give away to your team or clients.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/components-3-35.png\",\"chipTags\":[\"Atomic Editor\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-components-3.35-blog\",\"readMoreText\":\"Learn More\"},{\"id\":\"one-launch\",\"title\":\"Introducing Elementor One\",\"description\":\"The complete website building experience. All the tools to create, optimize, and manage websites, unified under one roof.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/one-launch.png\",\"chipTags\":[\"New Launch\"],\"cta\":\"Explore Elementor One\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/launch-whats-new\"},{\"id\":\"atomic-tabs-3.34\",\"title\":\"Atomic Tabs\",\"description\":\"Nest any type of content inside tab triggers or content panels, unlocking a truly atomic way of design.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/tabs-3.34.png\",\"chipTags\":[\"Atomic Editor\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.34-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"variables-manager-3.33\",\"title\":\"Variables Manager\",\"description\":\"Centralize and control all your color, typography, and size tokens for consistent, scalable design systems.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.33-variables-manager.png\",\"chipTags\":[\"Atomic Editor\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.33-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"ally-assistant\",\"title\":\"New! Fix accessibility issues with Ally Assistant\",\"description\":\"Scan any page for accessibility issues and fix them in one click. From color contrast to missing alt text, Ally Assistant provides guided steps or AI-powered fixes to make your site more inclusive.\",\"topic\":\"Ally by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/ally-assistant.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Scan for free\",\"ctaLink\":\"http:\\/\\/go.elementor.com\\/acc-assistant-launch-whats-new\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"pojo-accessibility\\/pojo-accessibility.php\"}]]},{\"id\":\"image-optimizer-3.19\",\"title\":\"Effortlessly optimize images for a stunning, high-speed website with the Image Optimizer plugin.\",\"description\":\"Image Optimizer perfectly balances between image quality and performance to boost your website.  Resize, compress, and convert images to WebP, for faster loading times and and better user experience.\",\"topic\":\"Image Optimizer Plugin by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/image-optimizer-3.19.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Get the Image Optimizer\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/io-notification-wp-dash-learn-more\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"image-optimization\\/image-optimization.php\"}]]},{\"id\":\"5-star-rating-prompt\",\"title\":\"Love the New Features? Let Us Know with 5 Stars!\",\"description\":\"Help spread the word by telling the world what you love about Elementor.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/5-star-rating-prompt.png\",\"cta\":\"Leave a Review\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/wp-dash-notification-five-stars\\/\"},{\"id\":\"site-mailer-introducing\",\"title\":\"Introducing Site Mailer\",\"description\":\"Keep your WordPress emails out of the spam folder with improved deliverability and an easy setup\\u2014no need for an SMTP plugin or complicated configurations.\",\"topic\":\"Site Mailer Plugin by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/Site-mailer.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Start Free Trial\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/sm-wp-dash-whatsnew\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"site-mailer\\/site-mailer.php\"}]]}]\";}', 'off'),
(227, 'elementor_fonts_manager_font_types', 'a:0:{}', 'auto'),
(228, 'elementor_fonts_manager_fonts', 'a:0:{}', 'auto'),
(229, 'elementor_custom_icon_sets_config', 'a:0:{}', 'auto'),
(266, 'elementor_pro_activecampaign_api_key', '', 'auto'),
(265, 'elementor_pro_drip_api_token', '', 'auto'),
(203, 'current_theme', 'astra child', 'auto'),
(204, 'theme_mods_astra', 'a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1775372923;s:4:\"data\";a:8:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";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:15:\"footer-widget-1\";a:0:{}s:15:\"footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-1\";a:0:{}s:24:\"advanced-footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-3\";a:0:{}s:24:\"advanced-footer-widget-4\";a:0:{}}}}', 'off'),
(205, 'theme_switched', '', 'auto'),
(740, 'can_compress_scripts', '1', 'on'),
(1064, '_site_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3', '1775583780', 'off'),
(1065, '_site_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3', '1775540580', 'off'),
(1066, '_site_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9', '1775583780', 'off');
INSERT INTO `wpd_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1067, '_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:19:\"Matt: TheOpenSource\";s:7:\"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=151870\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://ma.tt/2026/04/theopensource/\";s: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:603:\"<p class=\"wp-block-paragraph\">It&#8217;s very cool to see <a href=\"https://t3.gg/\">Theo / t3.gg</a>&#8216;s open source arc.</p>\n\n\n\n<figure class=\"wp-block-embed alignwide 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\n\n\n<p class=\"wp-block-paragraph\">Just in general, with people creating more software than ever, it&#8217;s so exciting to see an explosion of open source and a growing understanding of why working together on open source makes so much sense for the future we want to build.</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, 07 Apr 2026 00:01:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s: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:76:\"Open Channels FM: Finding Balance: The Importance of Downtime at Conferences\";s:7:\"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=2551269\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://openchannels.fm/finding-balance-the-importance-of-downtime-at-conferences/\";s: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:171:\"Conferences are hectic, but experts say taking breaks is key for success. Pausing helps recharge, absorb info, and connect meaningfully with others. Balance is everything!\";s: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, 06 Apr 2026 08:27: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: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:21:\"Matt: Easter Thoughts\";s:7:\"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=151842\";s:7:\"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:38:\"https://ma.tt/2026/04/easter-thoughts/\";s: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:981:\"<p class=\"wp-block-paragraph\">You call yourself a Christian engineer, but you haven’t given your life to Open Source? Huh.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What license would Jesus choose? I don’t know if it’s GPL or MIT, but sure as heck it isn’t proprietary.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Letting proprietary code dictate your life is like following a Bible you’re not allowed to read. Beware those who would seek to mediate your relationship to the divine.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Happy Easter, y’all. <img alt=\"🙏\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f64f.png\" style=\"height: 1em;\" /><img alt=\"🐰\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f430.png\" style=\"height: 1em;\" /><img alt=\"🌈\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f308.png\" style=\"height: 1em;\" /> </p>\n\n\n\n<p class=\"wp-block-paragraph\">(and the new colors are on the site.)</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, 05 Apr 2026 15:40:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:21:\"Matt: Turn Every Page\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=151827\";s:7:\"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:38:\"https://ma.tt/2026/04/turn-every-page/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:504:\"<p class=\"wp-block-paragraph\">If you&#8217;re looking for a good watch this weekend, I couldn&#8217;t recommend more the documentary <a href=\"https://www.google.com/search?q=turn+every+page\">Turn Every Page – The Adventures of Robert Caro and Robert Gottlieb</a>. The craft of research, writing, and editing is presented in the most beautiful way possible. Around 400,000 words were removed from <a href=\"https://amzn.to/4sdRYn6\">The Power Broker</a>, which was ultimately published as 1,162 pages.</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, 05 Apr 2026 01:14: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: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:22:\"Matt: Pedro Franceschi\";s:7:\"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=151811\";s:7:\"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/04/pedro-franceschi/\";s: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:428:\"<p class=\"wp-block-paragraph\">This <a href=\"https://www.ashleevance.com/\">Ashlee Vance</a> interview of Pedro Franceschi from Brex contains so many interesting stories it might cause you to reconsider what it means to be a CEO.</p>\n\n\n\n<figure class=\"wp-block-embed alignwide 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>\";s: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, 03 Apr 2026 19:07:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:75:\"Open Channels FM: Self-hosted WordPress Optimized Runtime on Docker (SWORD)\";s:7:\"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=2551797\";s:7:\"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/self-hosted-wordpress-optimized-runtime-on-docker-sword/\";s: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:182:\"In the CloudFest Hackathon, Jan Willem shared his team\'s project, SWORD, a self-hosted control panel for WordPress, highlighting collaboration, technical challenges, and team spirit.\";s: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, 03 Apr 2026 10:18: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: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:44:\"Open Channels FM: WEB Responsibility Scanner\";s:7:\"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=2551824\";s:7:\"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://openchannels.fm/web-responsibility-scanner/\";s: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:209:\"Ekaterina Streltsova introduced the BEP Responsibility Scanner at CloudFest Hackathon, addressing web sustainability, accessibility issues, and legal compliance, emphasizing the need for open-source solutions.\";s: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, 03 Apr 2026 09: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: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: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:35:\"Open Channels FM: WP Plugin Insight\";s:7:\"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=2551774\";s:7:\"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://openchannels.fm/wp-plugin-insight/\";s: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:178:\"Javier Casares and Mark Heijnen discuss WP Plugin Insight, a project enhancing WordPress plugin discovery through AI-driven analysis of compatibility, security, and translations.\";s: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, 03 Apr 2026 07:45:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:21:\"Matt: EmDash Feedback\";s:7:\"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=151783\";s:7:\"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:38:\"https://ma.tt/2026/04/emdash-feedback/\";s: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:6962:\"<p class=\"wp-block-paragraph\">So, two other Matts at <a href=\"https://www.cloudflare.com/\">Cloudflare</a> announced <a href=\"https://blog.cloudflare.com/emdash-wordpress/\">EmDash — the spiritual successor to WordPress that solves plugin security</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">(Is it <a href=\"https://en.wikipedia.org/wiki/Nominative_determinism\">nominative determinism</a> or a simulation glitch that everyone trying to terraform the web has some variation of &#8220;Matthew&#8221; in their name? I was in a call set up by Matthew Prince, talking to Matt Taylor and Matt Kane, with my right hand there, <a href=\"https://matiasventura.com/\">Matías</a>.)</p>\n\n\n\n<p class=\"wp-block-paragraph\">First, I&#8217;m going to tell you why this isn&#8217;t spiritually tied to WordPress at all, then why they haven&#8217;t solved plugin security, and finally offer some suggestions.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The Spirit of WordPress</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress exists to democratize publishing. That means we put it <a href=\"https://ma.tt/2026/03/wordpress-everywhere/\">everywhere</a>. You can run WordPress on a Raspberry Pi, on your phone, on your desktop, on a random web host in Indonesia charging 99 cents a month, and you can run it scaled up on AWS or across multiple datacenters. </p>\n\n\n\n<p class=\"wp-block-paragraph\">The same code. When you download <a href=\"https://wordpress.org/playground/\">WordPress Playground</a> you&#8217;re running the same code that&#8217;s being attacked a thousand times a second at <a href=\"https://www.whitehouse.gov/\">WhiteHouse.gov</a>. That&#8217;s what we mean when we say <em>democratization</em>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It&#8217;s all built on open source and web standards. You can run it anywhere; there&#8217;s no lock-in.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That&#8217;s why we do what we do. It&#8217;s really hard. You can come after our users, but please don&#8217;t claim to be our spiritual successor without understanding our spirit.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The Spirit of EmDash</h2>\n\n\n\n<p class=\"wp-block-paragraph\">I think EmDash was created to sell more Cloudflare services. And that&#8217;s okay! It can kinda run on Netlify or Vercel, but good stuff works best on Cloudflare. This is where I&#8217;m going to stop and say, I really like Cloudflare! I think they&#8217;re one of the top engineering organizations on the planet; they run incredible infrastructure, and their public stock is one of the few I own. And I love that this is open source! That&#8217;s more important than anything. I will never belittle a fellow open source CMS; I only hate the proprietary ones.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you want to adopt a CMS that will work seamlessly with Cloudflare and make it hard for you to ever switch vendors, EmDash is an incredible choice.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Claimed Plugin Security</h2>\n\n\n\n<p class=\"wp-block-paragraph\">In another example of them not understanding the spirit of WordPress, the fact that plugins can change every aspect of your WordPress experience is a feature, not a bug! And their sandboxing breaks down as soon as you look at what most WordPress plugins do. </p>\n\n\n\n<p class=\"wp-block-paragraph\">I know we get a bad rep because there are 62k plugins with wildly variable engineering quality, and more every day, and when one installed on 0.01% of our user base has a vulnerability, a bunch of websites write breathless articles that get clicks saying &#8220;122,000 WordPress Sites Vulnerable!&#8221;</p>\n\n\n\n<p class=\"wp-block-paragraph\">That, by the way, I think we&#8217;ll be able to fix in the next 18 months with AI. The plugin security <strong>only</strong> works on Cloudflare.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Critical Feedback</h2>\n\n\n\n<p class=\"wp-block-paragraph\">As I said, we had a call with Cloudflare on March 23rd, where they asked for feedback on this thing they built but didn&#8217;t tell us the name, said it would probably launch in their developer week towards the end of April, and some top colleagues and I offered to help. I wish I could say the things I&#8217;m saying in this blog post on that call, and if they had just shared the announcement post I could have, but in the spirit of open source here&#8217;s what I would have said:</p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>If they had said the name I would have asked if they had any other options because I have an <a href=\"https://emdash.codes/\">amazing colleague named Emdash</a> who is doing some of the most exciting stuff with WordPress and AI. (BTW I think our Em will have more impact on the web than this in five years.)</li>\n\n\n\n<li>I actually think the product is very solid, there&#8217;s some excellent engineering, migration tools, it&#8217;s very fast, and the Astro integration is nice.</li>\n\n\n\n<li>I&#8217;d be surprised if this doesn&#8217;t get tens of thousands of sites on it.</li>\n\n\n\n<li>The UI is in the <a href=\"https://en.wikipedia.org/wiki/Uncanny_valley\">uncanny valley</a> of being sorta-WordPress sorta-not. I know it wasn&#8217;t a weekend vibecode project, but it has some of that smell. Stuff breaks at the edges.</li>\n\n\n\n<li>I think using TinyMCE is a regression, and they should adopt <a href=\"https://github.com/wordpress/gutenberg\">Gutenberg</a>, which we licensed and created to be used by other CMSes. (Correction: They use <a href=\"https://www.portabletext.org/\">Portable Text</a> not TinyMCE, but same UI criticism applies.)</li>\n\n\n\n<li><a href=\"https://github.com/emdash-cms/emdash/tree/main/skills\">The Skills are amazing</a>, a brilliant strategy, and we need to do the same as soon as possible. I&#8217;ve been working on something similar and got some good ideas from their implementation.</li>\n\n\n\n<li>I&#8217;m not going to say which parts, but they copied a lot of things we&#8217;re planning to kill. Build from first principles. Make it better. Skate to where the puck is going.</li>\n</ol>\n\n\n\n<p class=\"wp-block-paragraph\">There&#8217;s a new CMS every other day. And that&#8217;s great! I love building CMSes and I totally get why other people do, too.</p>\n\n\n\n<h2 class=\"wp-block-heading\">In Conclusion</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Some day, there may be a spiritual successor to WordPress that is even more open. When that happens, I hope we learn from it and grow together. [removed &#8220;out of your mouth&#8221; sentence, too spicy for Western palates.] I&#8217;ve mostly focused on this post on just the software, but WordPress is also so much about the community — the meetups, the WordCamps, the art, the college programs, the tattoos, the books&#8230; The closest thing I&#8217;ve seen to a spiritual successor isn&#8217;t another CMS, it&#8217;s been <a href=\"https://openclaw.ai/\">OpenClaw</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Thanks to colleague <a href=\"https://bt.hn/\">Batuhan İçöz</a> for helping review this.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 03 Apr 2026 01:32:27 +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:64:\"WordPress.org blog: From AI to Open Source at WordCamp Asia 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=20341\";s:7:\"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/04/wcasia-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10931:\"<p class=\"wp-block-paragraph\"><strong>April 9-11, 2026 | Jio World Convention Centre, Mumbai, India</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp Asia 2026 brings the WordPress community to Mumbai, India, from April 9 to 11, with a schedule shaped around artificial intelligence, enterprise WordPress, developer workflows, product strategy, and open source collaboration. For attendees planning their time, the program offers a useful view of the ideas, tools, and practical challenges shaping WordPress today.</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://asia.wordcamp.org/2026/event-pass/\" rel=\"noreferrer noopener\" target=\"_blank\">Get Your Event Pass</a></div>\n\n\n\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background wp-element-button\" href=\"https://asia.wordcamp.org/2026/schedule/\" rel=\"noreferrer noopener\" target=\"_blank\">WC Asia 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://asia.wordcamp.org/2026/\" rel=\"noreferrer noopener\" target=\"_blank\">About WordCamp Asia</a></div>\n</div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-19211\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/10/20250220-DSC_1853-scaled-1.jpg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Keynotes to Set the Stage</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The keynote sessions at WordCamp Asia 2026 help frame some of the biggest conversations at this year’s event.</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-full\"><img alt=\"\" class=\"wp-image-20366\" height=\"1076\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/04/Screenshot-2026-04-02-at-11.31.10-am.png?resize=1078%2C1076&#038;ssl=1\" width=\"1078\" /><figcaption class=\"wp-element-caption\"><a href=\"https://asia.wordcamp.org/2026/speaker/matt-mullenweg/\">Ma.tt Mullenweg</a>, co-founder of WordPress and CEO of Automattic, is expected to speak about the future of the open web and the ever-evolving role that WordPress plays.</figcaption></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-20346\" height=\"986\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/03/Screenshot-2026-03-31-at-11.47.01-am.png?resize=984%2C986&#038;ssl=1\" width=\"984\" /><figcaption class=\"wp-element-caption\"><a href=\"https://asia.wordcamp.org/2026/speaker/mary-hubbard/\">Mary Hubbard</a>, Executive Director of WordPress, will also join a fireside chat moderated by <a href=\"https://asia.wordcamp.org/2026/speaker/shilpa-shah/\">Shilpa Shah</a>, focusing on leadership, education initiatives, artificial intelligence, and community growth.</figcaption></figure>\n</div>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">Together, they offer an early view of the themes and discussions unfolding across WordPress in 2026.<br /></p>\n\n\n\n<h2 class=\"wp-block-heading\">AI, Automation, and the Future of WordPress</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Artificial intelligence is one of the clearest threads running through the program. Sessions from <a href=\"https://asia.wordcamp.org/2026/speaker/fellyph-cintra/\">Fellyph Cintra</a>, <a href=\"https://asia.wordcamp.org/2026/speaker/fumiki-takahashi/\">Fumiki Takahashi</a>, and <a href=\"https://asia.wordcamp.org/2026/speaker/nirav-mehta/\">Nirav Mehta</a> examine how AI is already influencing WordPress through Core discussions, testing workflows, plugin development, and day-to-day implementation. That same theme continues in sessions on marketing and content strategy, including <a href=\"https://asia.wordcamp.org/2026/speaker/adeline-dahal/\">Adeline Dahal’s</a> work on structuring WordPress content to make it more machine-readable. </p>\n\n\n\n<p class=\"wp-block-paragraph\">This cross-section of presentations shows how automation is moving from concept to practice. From autonomous testing with WordPress Playground to AI-supported development workflows, these sessions highlight applicable tools and skills that teams can start using right away, not just concepts. For attendees interested in where WordPress is heading, this is one of the strongest themes across the event.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Enterprise WordPress and Scalability</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Enterprise sessions take that discussion further by focusing on scale, architecture, and operational complexity. <a href=\"https://asia.wordcamp.org/2026/speaker/rahul-bansal/\">Rahul Bansal</a>, <a href=\"https://asia.wordcamp.org/2026/speaker/james-giroux/\">James Giroux</a>, Anirban Mukherji, and Abid Murshed are among the speakers exploring how WordPress supports larger organizations, more complex commerce systems, and demanding digital environments. Their sessions look at growth, implementation, and the kinds of decisions that matter when WordPress is supporting business-critical work.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Other talks in this track focus on the realities of enterprise operations, including migration risk, observability, and long-term performance. Together, they show how WordPress continues to adapt to larger systems and more complex digital ecosystems without losing the flexibility that makes it widely used in the first place.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Developer Experience and Modern Practices</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The developer track stays grounded in both Core tools and everyday engineering practice. <a href=\"https://asia.wordcamp.org/2026/speaker/ryan-welcher/\">Ryan Welcher</a> will cover the Interactivity API, <a href=\"https://asia.wordcamp.org/2026/speaker/jonathan-desrosiers/\">Jonathan Desrosiers</a> will look at automation in open source, and <a href=\"https://asia.wordcamp.org/2026/speaker/takayuki-miyoshi/\">Takayuki Miyoshi</a> will introduce a schema-sharing approach to form management. These sessions point to a broader shift toward building WordPress systems that are more dynamic, maintainable, and easier to scale over time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">These more technical presentations also include sessions on the WordPress HTML API, Content Security Policy, open source data pipelines, and evolving plugin standards. Rather than focusing on a single type of builder, this part of the schedule addresses developers working across infrastructure, security, front-end experiences, and long-term platform health.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Community, Education, and Open Source</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The schedule also makes space for the people and ideas that support WordPress beyond engineering alone. A panel featuring <a href=\"https://asia.wordcamp.org/2026/speaker/anand-upadhyay/\">Anand Upadhyay</a> and <a href=\"https://asia.wordcamp.org/2026/speaker/maciej-pilarski/\">Maciej Pilarski</a>, moderated by <a href=\"https://asia.wordcamp.org/2026/speaker/destiny-kanno/\">Destiny Kanno</a>, looks at education initiatives and student pathways into open source. <a href=\"https://asia.wordcamp.org/2026/speaker/kazuko-kaneuchi/\">Kazuko Kaneuchi</a> will reflect on the story of Wapuu and the culture of contribution around WordPress. At the same time, <a href=\"https://asia.wordcamp.org/2026/speaker/kotaro-kitamura/\">Kotaro Kitamura</a> and <a href=\"https://asia.wordcamp.org/2026/speaker/chiharu-nagatomi/\">Chiharu Nagatomi</a> will share how WordPress and its community shaped their professional journeys.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That wider perspective continues in sessions on product thinking, marketing, career growth, and business strategy. <span style=\"margin: 0px; padding: 0px;\">Speakers, including <a href=\"https://asia.wordcamp.org/2026/speaker/nabin-jaiswal/\" rel=\"noreferrer noopener\" target=\"_blank\">Nabin Jaiswal</a>, <a href=\"https://asia.wordcamp.org/2026/speaker/himani-kankaria/\" rel=\"noreferrer noopener\" target=\"_blank\">Himani Kankaria</a>, <a href=\"https://asia.wordcamp.org/2026/speaker/julian-song/\" rel=\"noreferrer noopener\" target=\"_blank\">Julian Song</a>, <a href=\"https://asia.wordcamp.org/2026/speaker/karishma-sundaram/\" rel=\"noreferrer noopener\" target=\"_blank\">Karishma Sundaram</a>, <a href=\"https://asia.wordcamp.org/2026/speaker/sandeep-kelvadi/\" rel=\"noreferrer noopener\" target=\"_blank\">Sandeep Kelvadi</a>, <a href=\"https://asia.wordcamp.org/2026/speaker/aviral-mittal/\" rel=\"noreferrer noopener\" target=\"_blank\">Aviral Mittal</a>, <a href=\"https://asia.wordcamp.org/2026/speaker/anh-tran/\" rel=\"noreferrer noopener\" target=\"_blank\">Anh Tran</a>, and <a href=\"https://asia.wordcamp.org/2026/speaker/anna-hurko/\" rel=\"noreferrer noopener\" target=\"_blank\">Anna Hurko,</a> explore how WordPress works an</span>d connects with decision-making, discoverability, professional development, and organizational growth. Taken together, these sessions reflect one of WordPress’s long-standing strengths: its ability to connect software, learning, and community in the same space.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Hands-on Workshops</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Hands-on workshops round out the schedule, offering practical sessions for attendees who want to move from ideas to implementation. They include:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>From On-Demand to Cloud: Automate WordPress Installations Like a Pro</li>\n\n\n\n<li>AI + MCP to build, manage, and automate WordPress end-to-end</li>\n\n\n\n<li>Building AI Agents with self-editing memory</li>\n\n\n\n<li>Building Better WordPress Experiences with AI-Driven Development Workflows</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">Explore the <strong><a href=\"https://asia.wordcamp.org/2026/schedule/\">full schedule</a></strong> to plan your sessions, and get your <strong><a href=\"https://asia.wordcamp.org/2026/event-pass/\">event pass</a></strong> to join WordCamp Asia 2026 in Mumbai.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-19213\" height=\"754\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/10/wordcamp-asia-2025-family-photo.webp?resize=1024%2C754&#038;ssl=1\" width=\"1024\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Mumbai is calling. See you at WordCamp Asia 2026! </p>\n\n\n\n<p class=\"wp-block-paragraph\"><em><strong>Note: </strong>Much of the credit belongs to <a href=\"https://profiles.wordpress.org/webtechpooja/\">@webtechpooja</a> (<a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a>) for help in writing this piece.</em></p>\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:\"Thu, 02 Apr 2026 16:10:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:51:\"Open Channels FM: FAIR Package Management for TYPO3\";s:7:\"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=2551748\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://openchannels.fm/fair-package-management-for-typo3/\";s: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:186:\"Key figures from the FAIR TYPO3 hackathon discuss the platform-agnostic FAIR protocol, its integration with TYPO3, and advancements in digital goods distribution across multiple systems.\";s: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, 02 Apr 2026 10:49: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: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:16:\"Matt: Taxonomist\";s:7:\"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=151765\";s:7:\"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/04/taxonomist/\";s: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:6072:\"<p class=\"wp-block-paragraph\">I&#8217;m really excited to introduce a project I worked on with various AI agents the other night, which I think represents a new way we might build things in the future.</p>\n\n\n\n<p class=\"wp-block-paragraph\">First, the problem: My WordPress site has 5,600+ posts going back decades, and I had some categories that were old and I didn&#8217;t really use anymore, and I wasn&#8217;t happy with the structure. Every time I made a new post, it irked me a little, and I had this long-standing itch to go back and clean up all my categories, but I knew it was going to be a slog.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Let me present<span style=\"margin: 0px; padding: 0px;\"> <a href=\"https://github.com/m/taxonomist\" target=\"_blank\">Taxonomist</a>, a new open-source tool you can run with one copy-and-paste</span> command line that solves this problem. Here&#8217;s the idea:</p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>You run this code in your terminal, and it spins up a Claude Code instance that asks you for your URL.</li>\n\n\n\n<li>Then it takes that and figures out what type of site you have, which APIs are available, and starts downloading all your posts locally for analysis.</li>\n\n\n\n<li>Sub-agents analyze every post against your current categories and thinks about suggesting new ones.</li>\n\n\n\n<li>It previews all the changes.</li>\n\n\n\n<li>Tries a variety of ways to authenticate against your site and make all the changes.</li>\n\n\n\n<li>Logs everything locally, so anything is reversible later.</li>\n</ol>\n\n\n\n<p class=\"wp-block-paragraph\">THIS IS VERY ALPHA. PROBABLY BUGGY. BE CAREFUL WITH IT. PATCHES WELCOME. MAYBE MAKE A BACKUP OF YOUR SITE BEFORE YOU CHANGE IT.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It kind of just worked. I ran it live against ma.tt and it cleaned up a ton of stuff pretty much exactly how I wanted. But there&#8217;s a lot of weird stuff happening here, so I don&#8217;t know quite what this is yet.</p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>It&#8217;s very non-deterministic! There is some pre-written code, and probably could be more, but a lot of the code is generated on the fly by your agent. This creates interesting bugs where people testing with less powerful models had some odd behavior.</li>\n\n\n\n<li>I kind of want a directory of these useful AI agents on WordPress.org, but also, there&#8217;s something a little strange about trusting a remote shell script to run on your machine.</li>\n\n\n\n<li>I tested this with Claude, but there&#8217;s no reason Codex couldn&#8217;t use the repo in the exact same way, and I&#8217;d love to improve the quick start script to start by detecting all the agents you have, asking which you&#8217;d like to use, and also which directory you&#8217;d like to work in. I think we could kill the <code>cd taxonomist-main &amp;&amp; claude \"start\"</code> part of it.</li>\n\n\n\n<li>Because much of the code and commands are generated on the fly from prompts, it&#8217;s very resilient! I&#8217;ve seen people try it, and it ran into errors with libraries or whatever, but it just figured out how to work around them.</li>\n\n\n\n<li>I&#8217;d love it if, at the end of every session, there was a moment for self-reflection where the agent would take the repository and suggest upstream issues and PRs based on anything that went wrong. Then this could recursively self-improve very quickly.</li>\n\n\n\n<li>There are some obvious improvements to this, for example, doing this for tags. Sometimes it creates too many categories when you might only want 3-5 for your theme.</li>\n\n\n\n<li>One fun thing is a bunch of the work of this just uses public WordPress APIs, so you can run it against any site! I like using <a href=\"https://distributed.blog/\">distributed.blog</a> as a demo. It&#8217;ll still do all the fun downloading and analysis and everything, you just won&#8217;t be able to make changes.</li>\n\n\n\n<li>I now have a local cache of all my WordPress posts I can do other interesting things with, and that&#8217;s cool.</li>\n\n\n\n<li>The logging and reverting probably still has some bugs in it.</li>\n\n\n\n<li>You can riff with it along the way, so for example, it suggested I get rid of my <a href=\"https://ma.tt/category/audrey/\">Audrey category</a> because it didn&#8217;t have enough posts, and I asked it to look at all the companies on <a href=\"https://audrey.co/\">Audrey.co website</a> and categorize any posts that talk about them as Audrey, which created like 50 more.</li>\n\n\n\n<li>I want to check the GitHub repo for any updates before it starts, and maybe periodically, because it&#8217;s iterating and improving really fast.</li>\n\n\n\n<li>It&#8217;s not the default but the entire thing is way more pleasant if you run it with skip-permissions. So testing I usually run the one-liner, exit, resume with skip.</li>\n\n\n\n<li>You can see some of my prompt history in the Github but I apologize it&#8217;s not comprehensive, I also used Gemini and Codex with this and got lots of value from them.</li>\n</ol>\n\n\n\n<p class=\"wp-block-paragraph\">So, not sure what this is, but please check it out, play with it, submit improvements or ideas, and think about what&#8217;s next. Might host a Zoom or something to brainstorm.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The final thing I say is that this was a very different process of writing software for me. Instead of staying at the computer the entire time, I found myself going away for a bit, napping and dreaming about the code, coming back with new ideas and riffing on them. Maybe I&#8217;ll return to my <a href=\"https://en.wikipedia.org/wiki/Polyphasic_sleep\">Uberman polyphasic sleep days</a>? Nap-driven development?</p>\n\n\n\n<p class=\"wp-block-paragraph\">BTW I have lots of thoughts and feedback for <a href=\"https://github.com/emdash-cms/emdash\">Emdash</a> but I thought this was more interesting, will try to get that out later tonight. One preview: TinyMCE is a regression; they should use <a href=\"https://github.com/wordpress/gutenberg\">Gutenberg</a>! We designed it for other CMSes and would be fun to have some common ground to jam on.</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, 02 Apr 2026 00:14: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: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:95:\"WPTavern: #211 – Elliott Richmond on WordPress Content Creation, Education, and Pizza Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=203465\";s:7:\"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:107:\"https://wptavern.com/podcast/211-elliott-richmond-on-wordpress-content-creation-education-and-pizza-plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:60931:\"<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, WordPress content creation, education, and the unexpected diversion into a pizza plugin.</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 Elliott Richmond. Elliott&#8217;s been deep in the WordPress community for over 20 years, developing since the early days, back when WordPress was yet to be forked from b2. He&#8217;s freelanced, built with multiple CMS systems, and has contributed creatively to the community, including releasing a WordPress advent calendar way back in 2013.</p>\n\n\n\n<p class=\"wp-block-paragraph\">He is an active WordPress developer, content creator on YouTube, and unexpectedly a part-time pizza vendor running a thriving pizza business powered entirely by WordPress tools.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Many listeners will know Elliott for his technical videos, but today we discuss how WordPress has served as the glue for unexpected ventures, like scaling a local pizza business during lockdown, using WooCommerce, Jetpack, and custom plugins. Elliott&#8217;s experience showcases just how flexible WordPress can be, whether for websites, unique ordering systems, or even streamlining business processes for other niches.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Recently, Elliott has been asked by Automattic to create content around wordpress.com, giving him early access to features, and allowing him to share his workflow and insights with a broader audience. He talks about his approach to content creation, balancing scripting versus improvisation, and details his low tech kit from iPhone cameras to DIY lighting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Throughout the episode, Elliott shares how community connections and feedback loops, especially via YouTube comments, shape his work, and he discusses the new opportunities for content creators within the WordPress ecosystem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;re interested in WordPress beyond websites, curious about how to turn technical, know-how into educational video content, or just want to hear about WordPress powered pizza, and who doesn&#8217;t, 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 Elliott Richmond.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I am joined on the podcast by Elliott Richmond. Hello Elliott.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:35] <strong>Elliott Richmond:</strong> Hello. How you doing? Thanks for having me.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:37] <strong>Nathan Wrigley:</strong> You&#8217;re so welcome. Elliott and I have had a little bit of a chat prior to hitting the record button.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Elliott&#8217;s one of those people who has been in my world for many years, because I&#8217;ve been vicariously watching what, this is going to sound a rather sinister. I&#8217;ve been watching what Elliott&#8217;s been doing for several years. And we&#8217;ll get into some of that in a moment. It&#8217;s a pleasure to have you on the podcast anyway. I feel like I know more about you than you will do about me, that&#8217;s for sure anyway. But welcome to the podcast.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:08] <strong>Elliott Richmond:</strong> Thank you. Yeah, thank you for having me. I think if you put yourself out there, you are bound to attract stalking of some form.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:14] <strong>Nathan Wrigley:</strong> That&#8217;s right. Okay. I hope it doesn&#8217;t come across as that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:18] <strong>Elliott Richmond:</strong> No, not at all. Not at all.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:19] <strong>Nathan Wrigley:</strong> But will you just give us a little bit of your background? Obviously this is a WordPress specific podcast, so you can dip into your early childhood if you like, but maybe if we constrain it to WordPressy things.</p>\n\n\n\n<p class=\"wp-block-paragraph\">How long have you been using WordPress? What do you do at the moment? And then we can get into some of the fun things you&#8217;re going to be doing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:36] <strong>Elliott Richmond:</strong> Yeah, sure. So I&#8217;ve been using, or developing with, wordPress for over 20 years. So pretty much as old as WordPress is, but I was developing before that, building stuff. I&#8217;m self-taught developer, but I was building stuff in the early nineties for bands and stuff that I was in, creating music and just putting stuff out on the web.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But then I realised, when I was working at an agency, it was a design agency, that there was definitely a market for the web effectively, but the company I was working for didn&#8217;t really want to get into it. So eventually when I went freelance, I was able to sort of self-teach myself all of the things I was interested in, which was web development. So I used all of the kind of CMSs like Joomla, Drupal, and eventually found b2 which was forked, ended up being WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So, yeah, started seeing lots of communities popping up, meetups and I just reached out to people. And I&#8217;ve actually featured on WP Tavern before because of releasing an advent calendar I think it was, back in 2013, I think it was Christmas time. And it was basically just reaching out to other developers and asking them for code snippets. It was back in the day when WordPress was kind of, it was a blog but developers were using it in really creative ways like portfolios, and product databases where you had to use the category and tagging system to actually make things work, and then manipulate the templates.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So there was lots of code snippets sort of flying about. So yeah, I just reached out to community and got about 30 developers submitting code, and then just released them as advent calendars.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So, today I am still a developer and develop for WordPress, very passionate about WordPress. I&#8217;m a content creator, create stuff on YouTube, and I&#8217;m also a part-time Pizzaiolo. And if you don&#8217;t know what that is, that&#8217;s basically somebody who makes pizzas.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:22] <strong>Nathan Wrigley:</strong> I can&#8217;t ignore that, and we&#8217;re going to get into that in a moment. But I&#8217;ve been having people on a variety of different podcasts for over a decade now, and you are the first, actually, that&#8217;s not true. I was about to say that you are the only person that I&#8217;ve ever interviewed who&#8217;s actually used b2 prior to it becoming WordPress. You are not, because I interviewed Matt Mullenweg once, and of course he, along with Mike Little, definitely used b2 because they forked it to become WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But that really does give me an illustration of, you are right at the beginning. So you were one of the kind of founding members of the community, if you like, and goodness only knows, I&#8217;m sure you had no anticipation of what it was going to become.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:07:02] <strong>Elliott Richmond:</strong> No, not at all. Yeah, Kubrick.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:07:05] <strong>Nathan Wrigley:</strong> Old school. If you know what Elliott&#8217;s talking about, you can join the, what&#8217;s the word for somebody who&#8217;s been around in the community for a really long time? Well, anyway, one of those.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So tell us a little bit about the pizza thing. I don&#8217;t want to dwell on it for too long, if you don&#8217;t mind, but this is such an interesting little story. And curiously, it does have a WordPress spin at the end. So yeah, make sure to get that in as well because that&#8217;s fascinating.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:07:28] <strong>Elliott Richmond:</strong> Yeah, so during COVID, during lockdown, my wife and I just started a pizza delivery thing. Because all the kind of delivery shops were closing down and we have a community in our village and it was like, they&#8217;ve tried my pizzas before. So we thought, well, we&#8217;ll just roll it out and set it up. And people were saying, yeah, send me a pizza. So we thought, okay, well we can sell them to the rest of the community as well. And it was just going to be a temporary thing. Five years later, we employ five staff and it&#8217;s still going strong and we sell it as a licence to other people.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But the WordPress thing is, I mean in a million years I wouldn&#8217;t know that I&#8217;d be doing this five years later, but it&#8217;s all because of WordPress that has allowed me to do this. You know, it uses all WordPress products, it&#8217;s WooCommerce, WordPress itself, and some Jetpack stuff with the WooCommerce app. It glues everything together and it helps us to run a sort of micro business like that. And what has turned into a weekend, temporary thing has turned into a full-time business. So, yeah, it&#8217;s a, I don&#8217;t know if I can tell you any more about it really.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:08:28] <strong>Nathan Wrigley:</strong> Well, you can, you mentioned that you&#8217;ve got a plugin that&#8217;s coming out fairly soon, aligned with people who wish to replicate your pizza business, but in their own locale.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:08:40] <strong>Elliott Richmond:</strong> Yeah, so to just give you the bigger picture, my wife is kind of like a bit of a marketing guru, and she sees opportunities where I can&#8217;t see them. She sees all the blind spots. So this whole model can be replicated by anybody. She didn&#8217;t force me, I was willing to do it, but she made me film all of my steps to make pizzas. So if you don&#8217;t know how to make pizza, there&#8217;s a full course to make it. There&#8217;s a whole module of the marketing that we use. There&#8217;s all secret little tips in there about doing stuff on social media, which I don&#8217;t do. My wife does all that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I&#8217;ve developed a plugin that works with WordPress and WooCommerce and it stitches everything together. So it&#8217;s got an ordering system, it&#8217;s got a slot system, it&#8217;s got a time-based system, so you can only put certain slots within certain times, and then it&#8217;s got a radius distance. So if you were outside of that radius based on your postcode, you can&#8217;t order pizzas, but you can collect them. And we do get people collecting from miles away that were passing last year, and they&#8217;ve driven a hundred miles to come down for the weekend because they&#8217;re passing to pick up a pizza. Honestly, you wouldn&#8217;t believe it. But I think the furthest somebody&#8217;s come is something like 120 miles. It&#8217;s crazy.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Yeah, so people have been in touch with me like from, last chap was in Norway asking about his, could he use it for his brother&#8217;s bakery? And I said, yeah, absolutely. So anything that&#8217;s got like a restricted delivery zone, and maybe you want to just do it at certain times, you can do it. But you don&#8217;t even need to use the slot system, but you can set the radius distance. So if you want to do local deliveries, you can set a four mile radius, five mile, ten mile, whatever you want to set. Anything is doable really. Yeah, you can use the plugin.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that&#8217;s kind of like the freemium Pizza Pilot. And then there&#8217;s a Pro version that we actually will bundle with our licensees. And we&#8217;ve got, it&#8217;s not like a franchise, it&#8217;s, you know, they buy the whole model once, and then they get the plugin bundled in. And, yeah, I&#8217;m just kind of like fine tuning it so that I can manage it. So if pizza does take over my life, I&#8217;m still, got my foot in WordPress and developing this product. So I&#8217;m happy about that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:10:37] <strong>Nathan Wrigley:</strong> That&#8217;s so interesting that you have WordPress as the sort of fulcrum of this entirely different side of your life, really. And it feels like it&#8217;s more than like a hobby project at the moment. It feels like it&#8217;s the underpinnings of a lot of what you do, albeit maybe the WordPress community don&#8217;t know about it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But also curious that, and again, I might be reading between the lines, maybe you launch the pizza business and then kind of retrofit your procedures into your own dog fooding plugin, which now you are deciding to sell.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But the fact that the technology stack that you knew inside out was able to facilitate that, you know, and a website can handle things like geolocation, that a website can handle things like payment, and the ability to add ingredients and things like that. All of that enabled you to launch that business, which is just so interesting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because most people who use WordPress, I doubt ever have that experience in life. You know, maybe they&#8217;re building things for clients, or they try a little hobby project. But you&#8217;ve got, I don&#8217;t know, it just sort of perfectly slotted in and, well, serendipity seems like the right word. Everything just sort of seems to slot in perfectly, and how wonderful.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:11:46] <strong>Elliott Richmond:</strong> Yeah, I think it all kind of happened at the same time, because I just mentioned to Rachel about, you know, during lockdown these businesses are shutting down and people are going to pivot. Because I was talking to the WordPress community and they were talking about how their businesses were pivoting, like their restaurants. And I said, I could set this up as a website. So it all came together kind of all at once really.</p>\n\n\n\n<p class=\"wp-block-paragraph\">One thing I&#8217;d have to say is that I like doing complex things with WordPress, and I&#8217;m really interested in the way that people do stuff with WordPress. So we have somebody that comes to our Meetup that is a gardener, and they come religiously to our Meetup. You&#8217;d think, well, why is a gardener coming to the Meetup? Well, it&#8217;s because they run their whole invoicing system and business, the gardening business, through WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So it&#8217;s like, oh, that&#8217;s interesting. So there&#8217;s so many different things you can do with WordPress. So the one thing I&#8217;m grateful for is all of my experience that WordPress has given me and the opportunities in terms of my career, being able to sell, you know, development packages to clients, and picking up complex jobs in that sense. Because without, it wouldn&#8217;t be the glue for the pizza thing, and it wouldn&#8217;t have happened that easily.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:49] <strong>Nathan Wrigley:</strong> Right. Genuinely, absolutely fascinating. I think we could probably do the entire podcast about that, but there is another story to tell. As I said, I&#8217;ve been looking at Elliott online for quite a while and then, I don&#8217;t know when it was, but it was certainly quite recently, we are recording this in March, 2026, quite recently that I learned that you are going to be working with Automattic. I don&#8217;t know if it&#8217;s for Automattic, but certainly for the wordpress.com side of things. I could spoil what you are doing and misrepresent what it is. Probably best to just hand it over to you, and tell us what this gig is, this project that you&#8217;ve got running through 2026.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:27] <strong>Elliott Richmond:</strong> Yeah, so I have to shout out to Michelle Frechette because she basically reached out to me and suggested an introduction with Stacey Carlson, who is Automattic&#8217;s Affiliate and Influencer Director. And she&#8217;s obviously picked up some of my videos and she just said to me that, do you fancy us sponsoring a video or two about wordpress.com and how I felt about Automattic products? I said, yeah, why not? I use them all the time, every day. So it&#8217;s definitely up my street.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I put some stuff together and she basically just told me that the Automattic leadership team, which directly is Matt down, were broadly supporting content creators. So yeah, I was on board with it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And my mind just went on overdrive. Basically, Stacey said to me, would you like to do this thing? And I was like, yeah. She said, okay, well, we&#8217;ll have a chat in a couple of days or whatever. And I was like, I put concepts together and I sent about three or four different ideas. And it was like, yeah, okay, let&#8217;s do this. And it&#8217;s basically how I use WordPress, what I did, the whole pizza thing, what I do from day to day.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I put these videos together and then it created another opportunity and another introduction to a lady called Brit Solata, who&#8217;s head of Influence Marketing. Big inspiration for me is another guy called Jamie Marsland, who&#8217;s actually the head of the wordpress.com YouTube channel, because he basically raised his profile by using WordPress and turning hard concepts like using the Block Editor into really easy to understand videos.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And he had the genius idea of creating the speed challenge, which was kind of viral. Again, he lives down the road from me, believe it or not, less than five, six miles away. So there&#8217;s a funny story behind that. We&#8217;ve known each other for like 15 years, connected through social media and whatever channels there are that we used to use. And we actually met for the first time, face to face, at WordCamp Europe in Greece. And it always tickles me because the first thing he said is like, we&#8217;ve known each other for years, but this is the first time we&#8217;ve met, and we have to come over the other side of Europe. So it&#8217;s not great for our carbon footprint, which always makes me chuckle.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Yeah, he was a great inspiration. And since then we went out for a coffee or two and he inspired me really to start doing my YouTube stuff. And I think that&#8217;s really what got me recognised through Michelle, Stacy, and Brit. And then Britt suggested that we do something for the rest of this year. So I&#8217;m going to be doing videos about wordpress.com, what&#8217;s coming up.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress has always been a moving target. It uses multiple different types of technology, right? So there&#8217;s always different things happening and changing. And with the advent of AI, there&#8217;s a lot of stuff coming into the whole project. So, yeah, that&#8217;s kind of where we&#8217;re at.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:09] <strong>Nathan Wrigley:</strong> I have a lot of questions around that actually. So the first thing I&#8217;m going to ask is, is the intention to make long form content, or are you hoping to make more short form content? And really behind that question is what you just said about the fact that WordPress is in a real period of flux. On the .org side, we&#8217;ve got WordPress 7 coming around, which is going to be transformational, but I also feel that any video that gets made to coincide with 7 is quickly going to go out of date because we&#8217;re in such a rapid period of flux.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So just conscious about that, really, whether or not the content that you are going to be creating, and forgive me for using this word, is more disposable, if you know what I mean? So the kind of content that you&#8217;ll throw together in the anticipation that in 4, 3, 2 months time, you might have to reshoot it again. So, yeah, just wondering what the constraints are on the kind of content that you&#8217;re going to be making?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:01] <strong>Elliott Richmond:</strong> There aren&#8217;t really constraints in that sense, but I think the whole nature of WordPress is ideal for that kind of scenario. So we are going to do long form content and then spinoff of that is going to be the short form as well, because you can just do that with the modern tech that you can use today anyway.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But yes, I think if you&#8217;re working in the Core team and you&#8217;re doing documentation, and it&#8217;s always been a thing, getting documentation out has always been a problematic thing. And if you&#8217;re working on something and you&#8217;re deep into it, it&#8217;s difficult to get that stuff out.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I think over the years it&#8217;s got better because you&#8217;ve got prominent people in Core, in the team, working at Automattic that are pumping stuff out. Justin Tadlock and the other chaps and Birgit is putting stuff out with Gutenberg Times and things like that. So it has got a lot better, but definitely there is an opportunity for content creators to fill a gap in terms of new things that are coming, what&#8217;s going to be changing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And also the way that people consume that content because YouTube and all the social, other social platforms, not that they&#8217;re great, TikToks and all that, but there&#8217;s definitely an opportunity for that content to be absorbed by different people. So there&#8217;s definitely a gap there for content creators to make people aware about those changes and new developments that are coming to WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:22] <strong>Nathan Wrigley:</strong> I&#8217;m in the lucky position in that for this podcast there isn&#8217;t really a laundry list of things that I have to cover. It&#8217;s very much up to me what I wish to have on the podcast. So you are an example, you know, decided to do this, and here we are doing it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I did wonder if you were, you know, you mentioned some names there over at Automattic. I don&#8217;t know if there&#8217;s going to be some things that they will require you to do because that&#8217;s in line with what .com has just released or what have you. Or if you really are, you know, the reins are off, do what you like Elliott and just make sure that you post us and tell us what&#8217;s going on.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I&#8217;m imagining there will be some sort of guidance and, okay, this thing&#8217;s about to launch, it would be really welcome if you produce the piece of content explaining why we&#8217;ve done it, and how it works and so on.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:03] <strong>Elliott Richmond:</strong> There&#8217;s no guardrails in that sense. It feels very fluid and flexible. Yes, there are kind of like things, we&#8217;d love you to do this, and I&#8217;m more than happy to do that because it&#8217;s definitely on my street anyway.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The products that are sort of being talked about are products that I use every day, so it has synergy, you know? It&#8217;s not like I&#8217;m having to do something that I wouldn&#8217;t be comfortable doing. It&#8217;s stuff I love doing and I love teaching other people anyway. So in terms of that whole community thing, I think when communities come together, the most I get out of it is actually learning from other people, not just teaching them.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And actually just by teaching somebody, or telling somebody about something, they give you feedback and the feedback loop there is super important, especially for a project like WordPress. Without that feedback loop, potentially, it&#8217;s not going to be a thing that anyone will use anyway. So just by doing something with the community or publishing something is useful feedback.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There may be something that is sort of created and developed that I don&#8217;t necessarily agree with, but I can still put it out there, say whether I like it or don&#8217;t like it, and then ask somebody, you know, what&#8217;s your feeling? Have you used it? What&#8217;s your feedback? Get some comments. That is feedback. And that&#8217;s how you improve things.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:14] <strong>Nathan Wrigley:</strong> YouTube is a phenomenal feedback loop actually. I mean, I know you&#8217;ll probably be getting feedback from within Automttic and what have you as well, but I long for the comments on a WordPress blog to be like the comments on a YouTube video. It seems that everybody&#8217;s quite willing to get the keyboard out and hammer out thousands of replies on a YouTube video. It really does capture that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so, especially if during the content you provoke the audience to comment, and to give you feedback, because you may well be making another piece of content, which will be guided by the comments and what have you. I think it&#8217;s amazing for that. And kind of like pretty, pretty untapped. Usually when you watch content, it is just, okay, I&#8217;ve decided what I&#8217;m going to do. There it is. It&#8217;s an isolated, atomised piece of content. But the idea of going and asking for, what shall I do next? Or something akin to that is really great. And I hope that works out for you. I fully anticipate that it will, because like I said, the comments are usually fairly voluminous.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:09] <strong>Elliott Richmond:</strong> Yeah, it&#8217;s interesting because some of the comments actually inspire you to create your next piece of content. So it&#8217;s always good. Sometimes it is difficult because you can see that it&#8217;s negative feedback. But actually I think that negative feedback is a positive thing because you can respond in a positive way. Or you can just take that feedback and then feed it back into the ecosystem and that&#8217;s how things get changed. So any negativity is a positivity in my book.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:35] <strong>Nathan Wrigley:</strong> Yeah, nice. I think you have to armour yourself with things like that when you go on social media and post content, don&#8217;t you? Because it doesn&#8217;t matter how perfect it is, and how well aligned it is, there&#8217;s always somebody lurking somewhere who is willing to derail your day with a comment like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Are you going to be doing this then on official, so you&#8217;ve made the content, you&#8217;ve created the video, and yada yada. We can get into the process of that in a moment. I&#8217;d be kind of interested to know what you do. Are you going to be posting this on official WordPress channels, or is this that you are being hired to create the content and then put it out on your own channels? Or is it, does it come with the official stamp of the wordpress.com YouTube channel or something like that?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:13] <strong>Elliott Richmond:</strong> No, it&#8217;s on my channel for my audience. So I&#8217;m free to do whatever I want really. I can do my own stuff but there is a, kind of an agreement we have to meet certain months and content that will be aligned with whatever&#8217;s happening at wordpress.com or at Automattic. But yeah, there&#8217;s no restriction. It&#8217;s kind of on my channel to my audience.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:33] <strong>Nathan Wrigley:</strong> Is it very much then going to be YouTube, like screen shares of the kind of things that you&#8217;ve been doing with a code editor or in the backend of WordPress, or a plugin that you&#8217;ve installed and have played with or what have you? But obviously on the .com side of things as opposed to the .org side of things.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:47] <strong>Elliott Richmond:</strong> I don&#8217;t want to give too much away, but I&#8217;m given kind of a little bit of early access to stuff that, I found it difficult to find it but it is available, you can get to it, but I needed some pointers. But it&#8217;s going to be a mix of technical stuff. You&#8217;ve seen my stuff, I&#8217;d like to get technical content simplified and I use graphics. And, I mean, if I look at my first stuff, it was nowhere near as polished as it is today. but I like to use animation.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There&#8217;s difficult concepts to get over, especially with templating and patterns and template parts and things like that. And if you can simplify that to users, to use this stuff with more knowledge. But there&#8217;s also stuff about AI that&#8217;s, I mean it even confuses me today, like MCPs and, what&#8217;s that? And it&#8217;s like large language models and things like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So there&#8217;s complex stuff that I&#8217;m really looking forward to getting my teeth into because I can try and simplify it. And that&#8217;s what I like doing in terms of like graphics and analogies. And hopefully it makes sense to people.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:46] <strong>Nathan Wrigley:</strong> So it&#8217;s going to be, I guess the one word that maybe I would encapsulate it as is educational. The idea is that you come in, learn a thing, or multiple things, and then go away. It&#8217;s not just that, oh look, here&#8217;s the latest new feature that&#8217;s shipping. It&#8217;s more, look, here&#8217;s the feature, but also here&#8217;s how you get to it and how you navigate it and what it does. And if you want to implement it, you must do this, yada, yada, that kind of thing. So educational.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:12] <strong>Elliott Richmond:</strong> Yeah, absolutely. There&#8217;s lots of other things happening as well that are specifically for developers and not necessarily for wordpress.com. But yeah, engineering those things and putting those together to make something work in the way that you want it to, there is a technical barrier to that. So if I can simplify that and help others to get up and running, then great.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But there&#8217;s things like Xdebug that are not enabled by default in the Studio app that I think are really useful. Now I&#8217;ve used Xdebug for debugging my code for many years and I honestly cannot do without it. And I didn&#8217;t even know it was there, you know, that&#8217;s how hidden it was, until I saw a tweet like the other day, and it was, I think it&#8217;s recently been rolled out, but I&#8217;m like, I am itching to do a video on that, so that I can just let people know how to use it and what it&#8217;s beneficial for.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:56] <strong>Nathan Wrigley:</strong> Yeah, you strike me as the kind of character that&#8217;s not going to be short of things to do content about. It&#8217;s more, which comes first. And I think that&#8217;s such a nice gig for you as well, in that you&#8217;re obviously a very curious individual. You know, you&#8217;ve been making videos for, this is going to come out the wrong way, but, you know, for no reason, if you know what I mean? You know, there was nobody prodding you with a stick saying, Elliott, we need another video now because you&#8217;ve been paid for it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You were doing it because that&#8217;s something that you found enjoyable, and you like the experience of doing all of that. And then somebody comes along and says, you know what? I think we could well do with paying you for this. That must have been kind of, almost manna from heaven in a way.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:34] <strong>Elliott Richmond:</strong> Absolutely. I mean, I feel so fortunate. I&#8217;m so grateful to Michelle Frechette for reaching out to me and making that contact because, yeah, I mean, it&#8217;s right up my street. You&#8217;ve seen, I&#8217;ve got guitars around the studio and I think it&#8217;s like, I&#8217;m the sort of person that I think it&#8217;s good to learn something new every day, regardless of what it is. And yeah, you have to be intrigued by something.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And particularly with code and technology, it&#8217;s changing all the time. You can do things in different ways. Very much the same as just fingering around a fretboard and trying to find that lick, or that nice harmonic tone that you never found before. And you think, ah, I can do this. I&#8217;m going to show my bass player that I can do this, or my guitar player, or whatever. You know, it&#8217;s a bit like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And you get excited about the littlest things that maybe are not so exciting to a lot of people, but they are to me, and that&#8217;s why I do it. And if I can just impart that on somebody, that&#8217;s a bonus to me. And I do get that feedback on YouTube. So I&#8217;m always so grateful when I get positive feedback like that. So, yeah, long may it continue. And I&#8217;m not going to stop doing it because I find it fascinating and I really enjoy it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There are many stages to doing a video. You have to figure out what you&#8217;re going to talk about, the script, which I didn&#8217;t used to do. It was just kind of like, I know this thing, so I&#8217;m just going to jump on. But I now script things, break things down into concepts, and then know when I&#8217;m going to do some motion graphics. Then I do the headshots, and then I do the editing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And when I&#8217;m done editing, I&#8217;m not done editing in like one day, I just do a couple of hours and I go back into the house and I just tell Rachael, I say, I absolutely love editing. It&#8217;s just like, it just really excites me. So it is just these little things. Not necessarily about WordPress, but yeah, figuring out how to get a concept across. And then I&#8217;ll sit and I&#8217;ll bore the tears off Rachael, try and explain this stuff to her, and she&#8217;s just patiently listening to me, you know, so I can get it out of my head.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:27:19] <strong>Nathan Wrigley:</strong> No, I think that&#8217;s the most credible way of getting to the perfect simulation of what it is you&#8217;re trying to educate people with. Because you trip over yourself, don&#8217;t you? And you realise, okay, that second point should have been the third. And the third should have been the second. And there was a better way of explaining that. I think it&#8217;s great that you do it that way.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I&#8217;m also, pleased is the wrong word, but I&#8217;m curious that you script it as well. Because I know that the temptation is often easy, isn&#8217;t it? It&#8217;s just, okay, I know this stuff inside out, I&#8217;ll just go for it. That extra hour, two hours, three hours, whatever it may be, of disciplining yourself to write it down, I think you go a million more miles with that content. You know, you refine it, you work it through, you cut out the additional words that are not needed, that just sort of demonstrates to me that you are really, really serious about it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:06] <strong>Elliott Richmond:</strong> I say scripted, loosely scripted. It&#8217;s scripted not to the absolute T. It&#8217;s kind of like flashcard prompts.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:10] <strong>Nathan Wrigley:</strong> Oh, no. No, no, no. Sorry. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:13] <strong>Elliott Richmond:</strong> But there&#8217;s the structure, let&#8217;s say. And sometimes I do word for word. But if I go off piste, if I&#8217;m recording, I&#8217;m like, yeah, I&#8217;m just going brush over that. It&#8217;s not that important. It&#8217;s just an um or an ah, or an and and a the that shouldn&#8217;t be there, but whatever. I mean, if I watch back some of my stuff, I&#8217;m like, oh, did I really say that? I&#8217;m my worst critic, I guess.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:31] <strong>Nathan Wrigley:</strong> The trick there is never to watch or listen to your own stuff.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:35] <strong>Elliott Richmond:</strong> Yeah. Yes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:37] <strong>Nathan Wrigley:</strong> The problem is, if you are self editing, you have to listen to yourself, you know, for every hour that I record, I end up listening to myself for probably about four hours. It is purgatory. For example, the sentence that I&#8217;ve just said, I will listen back to and I will be ruing the day that I said it. It&#8217;s curious.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Given that it&#8217;s on the .com side of things, and if, dear listener, you&#8217;re not familiar, we have sort of like this bifurcation, if you like, of WordPress. We have the .org side, which is the way you can go, wordpress.org, and you can download it and put it on a server and put it on your local machine and do what you like with it. And then the .com side, which is where Elliott&#8217;s work is going to be mostly living I guess, is the hosted side. So you go and you pay a monthly fee and you have access to WordPress over there, so you don&#8217;t have to think about the hosting or anything like that, that&#8217;s just taken care of.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Do you get a sense that there&#8217;ll be like commercial pressure there? That&#8217;s maybe getting to territory that you don&#8217;t wish to get into, I don&#8217;t know. But will, for example, you have to create content around certain features because it&#8217;s shiny and new? So instead of it being educational, it might slip into the more promotional, and I&#8217;m doing air quotes as I say that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:29:45] <strong>Elliott Richmond:</strong> In my experience, little experience working with the guys at the moment, there&#8217;s been none of that. It&#8217;s literally, you have the free reign, do what you want. There is a benefit of putting a script together in that sense, because you can iron things out if you need to. But in all honesty, of the 10, 15 scripts I&#8217;ve already sent through, I&#8217;ve only had minimal feedback. They said, great, it looks great. Let&#8217;s go with it. And also, if it&#8217;s a new shiny thing, show me. I want to know about it. I want to tell others about it as well, you know?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:30:11] <strong>Nathan Wrigley:</strong> Right. So the overlap there is welcome to you, which is quite nice, isn&#8217;t it? It&#8217;s new, it&#8217;s interesting. I would like to mention it anyway.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:30:17] <strong>Elliott Richmond:</strong> There is also another point. I think there&#8217;s a misconception between wordpress.com and WordPress, the standalone software. Because effectively it&#8217;s the same thing. When you use something like the Studio app, you&#8217;ve still got your local files and you can still develop your own stuff. You can get as complex as you want. You are just literally hosting it with the people that make this software. And you then know that you&#8217;re going to get the performance, you&#8217;re going to get all of the security stuff, you&#8217;re going to get all the benefits of hosting with a, on a platform that know the software. So there&#8217;s a win-win situation there in my opinion.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:30:52] <strong>Nathan Wrigley:</strong> So you were mentioning earlier, Jamie Marsland, just down the road from you, who&#8217;s the head of WordPress YouTube. Obviously kind of a prolific content creator himself, and then got taken on by Automattic to carry on that journey. There&#8217;s obviously now you. I wonder if you&#8217;ve got any thoughts on how WordPress, and you might read Automattic in here or .com or whatever the right word is. I wonder how you view the seriousness with which they&#8217;re taking content creator content.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because again, if I rewind the clock three or four years ago, it felt that there really wasn&#8217;t much coming out that had that kind of official stamp. We were kind of left to our own devices. We were going into Slack and reading comments, or we were going into GitHub queues for plugin developers and things like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But it does seem that at some point in the last four or five years, somebody somewhere said, wait, no, video is it. We really have to invest in video. And it feels like you&#8217;ve been caught up in that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There&#8217;s no real question there. It&#8217;s more just an observation that video content by people who obviously are out in the community doing this with a serious intention. It&#8217;s more than just a hobby. It&#8217;s something they&#8217;ve got a track record of doing seriously. I wonder if you&#8217;ve spotted that trend as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:32:05] <strong>Elliott Richmond:</strong> Yeah, absolutely. I mean, I often look up stuff on YouTube. It used to be Google. How do I, I don&#8217;t know, mitre some wood together? You can go to YouTube now and you can find all of this stuff. Or how do you make the perfect naan bread or the perfect pizza, let&#8217;s say? So yeah, YouTube is definitely, in the last, I actually don&#8217;t think it, it&#8217;s always been there, but it&#8217;s probably, it&#8217;s only become sort of more prominent on my radar, I guess. So if that&#8217;s a result of what&#8217;s been happening organically, then yeah, I&#8217;ve just been sucked into it. But, yeah, I think it&#8217;s always been there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You always get from YouTube content creators about how much more difficult it is, I guess, because there&#8217;s more people doing it, so they&#8217;ve got less money to give people. But honestly, I&#8217;m not in it for the financial reward anyway. I mean, I do get paid ads and stuff, but it&#8217;s peanuts every three months, so I&#8217;m not in it for that at all.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So yeah, it&#8217;s definitely on my radar basically. I mean, in terms of editing and software, I still look up stuff. You know, even whether it&#8217;s WordPress or whether it&#8217;s command line stuff. Particularly now, if you drop AI into the title, you&#8217;re going to get loads of stuff.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:33:10] <strong>Nathan Wrigley:</strong> Yeah, I mean, more and more if you go and ask a question of Google, you&#8217;re going to get the AI answer first, but then you&#8217;re just going to get like a big row of YouTube videos. You know, if you ask it a question beginning, how do I, or something along those lines, the AI often comes first.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I&#8217;m actually using a different search engine now. I use one called Kagi, which was actually by coincidence developed by the guy who used to run Manage WP, who then sold it and moved on to make this search engine. There&#8217;s another success story coming from the WordPress space. But if you ask it a question, you get the AI generated sort of response over three or four lines, and then after that, just a cavalcade of YouTube videos. And it really, I think, has become the default.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What I&#8217;m finding interesting about that is, I think that wordpress.com in this case, but you could read Automattic, are kind of putting their money where their mouth is and doing it in an interesting way.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So rather than, let&#8217;s say, employing a team of content creators to do this, this, this, this, and this, they&#8217;re asking people like you to just get on with it. Just do what you were doing. I think that&#8217;s really interesting. And it&#8217;s hard to encapsulate what I&#8217;m saying there, but there&#8217;s a real level of trust. You know that you&#8217;ve got to do things, but nobody&#8217;s micromanaging you to tell you what to do. It sounds like nobody&#8217;s giving you, okay, we want this piece of exact content, and this one and this one and this one. It&#8217;s more, Elliott, you&#8217;ve got a track record, you&#8217;ve proven yourself, now crack on, but we&#8217;ll assist from the financial point of view. I think that&#8217;s a really nice model of allowing people like you to do what you do, and the trust that you&#8217;ve built up is all that was needed to get you started on that journey.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:34:47] <strong>Elliott Richmond:</strong> Yeah, there are kind of, who this is for, what&#8217;s good to do, what isn&#8217;t great to do. So there is, not guardrails as such, you&#8217;re given complete flexibility, but you are given a kind of like a brief, not template, it&#8217;s not template, it&#8217;s a, what&#8217;s this for? What&#8217;s the target?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:03] <strong>Nathan Wrigley:</strong> Like an avatar kind of, something like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:05] <strong>Elliott Richmond:</strong> Yeah. Yeah, an avatar. I don&#8217;t find that restrictive in any way. If I did, I wouldn&#8217;t be doing it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:10] <strong>Nathan Wrigley:</strong> No, that&#8217;s really helpful.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:11] <strong>Elliott Richmond:</strong> Yeah, exactly.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:12] <strong>Nathan Wrigley:</strong> Yeah. But you&#8217;re given a lot of rope. It does sound like you&#8217;ve got a lot of leeway to do what you like. I mean, maybe there&#8217;s constraints around, you know, let&#8217;s not make content about the UI of Wix or Squarespace or anything like that. You know, that&#8217;s probably out remit.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:28] <strong>Elliott Richmond:</strong> That goes without saying.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:29] <strong>Nathan Wrigley:</strong> Yeah, yeah. But certainly from my point of view, doing this podcast, WP Tavern, I can&#8217;t really sum it up, but I have that same freedom. I can have who I like on, nobody&#8217;s telling me what I can do and when it should be done. It was just a case of, okay Nathan, you&#8217;ve done podcasting, we would like you to do this one. And it sounds like a similar kind of offer was made to you, but on the video side. The trust behind that is hard to communicate, but it feels so nice.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:57] <strong>Elliott Richmond:</strong> Yeah, absolutely. I mean, I&#8217;ve always said, because I&#8217;ve worked on my own for such a long time, since I was in my twenties, and I won&#8217;t tell you how old I am, but it&#8217;s been a few decades now, I literally am unemployable. I do work on a remote basis for a company, but it&#8217;s on a very minimal tech lead responsibility kind of arrangement. But I could not go into an office. I&#8217;m just conditioned not to be, someone breathing down my neck. I&#8217;ve just been conditioned to have that freedom and creativity that I love. And definitely without a doubt, I&#8217;ve been given this opportunity in the same respect. So I&#8217;m absolutely stoked about it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:36:34] <strong>Nathan Wrigley:</strong> Yeah, I think that&#8217;s really lovely. You&#8217;ve got that history. And I think we see that in the community a lot. You know, you&#8217;ve got a history, and it&#8217;s your turn to shine, if you like.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Okay, now the nerdy bit, right at the end. I want to know what your process is. Obviously being a content creator myself, I&#8217;ve got a whole load of software that I use and I flit around, but I&#8217;ve kind of stabilised on a few key pieces of software, which enabled me to do that journey.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I&#8217;m sure that there&#8217;s going to be people listening to this who have thought to themselves, I too would like to make videos, and I&#8217;m curious, what is your tech stack? I mean, we don&#8217;t need to go into absolutely everything, but I&#8217;m curious, what are the 3, 4, 5, whatever it may be, essential things that are either on your desk, or on your computer that make the whole thing easy and possible?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:37:18] <strong>Elliott Richmond:</strong> My tech stack is so low key, it&#8217;s unbelievable. My lights, if I explain my lights to you, I&#8217;ve got basically a cat food pouch box, which is like six inches by four with a hole cut out of it, resting on an LED light with a bit of tissue paper over it. It&#8217;s that low key, low tech.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:37:34] <strong>Nathan Wrigley:</strong> So it&#8217;s like a small shoebox with a hole cut in with tissue paper diffuse the light.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:37:39] <strong>Elliott Richmond:</strong> Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:37:40] <strong>Nathan Wrigley:</strong> That&#8217;s so great. That&#8217;s so cottage industry. I love that. Yeah, because you could of course buy the $150 equivalent, but you know, the cat food box is lying around. That&#8217;s brilliant. Oh, I hope this keeps going. I hope you got more of these.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:37:55] <strong>Elliott Richmond:</strong> If I could just turn the camera round. And the other thing is just an iPhone. I just use my iPhone. My iPhone is literally sitting on my computer now. So it&#8217;s good enough to do what I need to do with it. At some point it will upgrade, but for anybody who wants to do this out there, you know, you don&#8217;t need much kit.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In terms of the software, I just use the Notes app and I just jot down my ideas. I actually use the accessibility keyboard shortcut. So I literally, what I do is tap the key and just speak into my mic about the idea that I want to get across. And then that&#8217;s my brain dump. And then I&#8217;ll take that, read it back, break it down. It&#8217;s all in my own words, I then just get AI to polish it a little bit, so it kind of gives me the bare bones of my script. And then that gets me like 60, 70% there. But it&#8217;s literally my brain dump that&#8217;s polished, and then I repolish it again. So that&#8217;s one key bit of legwork that gets me going quickly.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I&#8217;ve picked up a lot of kit over the years from just producing music. I&#8217;ve got some NS-10s in front of me, studio monitors, so I can do all my sound balancing and stuff. The other key bit of software is DaVinci Resolve, which is, it&#8217;s got all of the motion graphics in it. It is a bit of a head spinner to get into it, but there&#8217;s lots of resources out there that can help you get to where you want to be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There&#8217;s lots of stuff out there that you can, like library stuff that you can subscribe to and pull in. But I&#8217;m always reluctant to do that because I&#8217;m the sort of guy that, I want to, even if it&#8217;s code, I want to get into it. I want to understand exactly how it works and do it myself. So working with nodes and animation in that sense has been, it&#8217;s been a big learning curve, but I&#8217;ve absolutely loved it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then just the editing is like DaVinci Resolve. And it has everything in it. I pay a licence for it because I want all the whistles and bells, but you can use the free version and I just cannot believe what you can get away with, with the free version. You get all of the motion graphics, you get all of the audio, you get the colour correction, plus all of the editing suite. It&#8217;s incredible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I&#8217;m just looking around to see what other stuff I&#8217;ve got, but yeah, that is literally about it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:39:52] <strong>Nathan Wrigley:</strong> I think you&#8217;ve encapsulated perfectly. I mean, really you need a computer with a bit of editing software, and there&#8217;s many. Some free, some much more expensive. You can certainly pay a fortune for some editing software. But also camera, a little bit of lighting, I guess a backdrop and a quiet room would help. But that&#8217;s kind of really all that it takes. The key bit, of course, the bit that you are not mentioning of course is that script bit. That&#8217;s where the magic happens.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And people like you are able to turn difficult things into easy to consume things. For people like me who consume it, it all just looks so straightforward and easy. But I&#8217;m well aware that in the background there&#8217;s probably quite a lot of soul searching and rehashing and rethinking and you were saying, explaining to your wife and re-explaining to your wife and so on.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so whilst the software and the iPhone camera and all of that are necessary to make it happen, I think the bit which makes your stuff, and people of your calibre&#8217;s stuff, stand out is that bit inside your head. The bit which only you can do in the way that you do it, you know? I&#8217;m grateful for all the stuff that you&#8217;ve done for many years, and long may it continue. You&#8217;re carrying on throughout 2026, I think is how it&#8217;s framed at the moment.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:41:02] <strong>Elliott Richmond:</strong> Yep, or up to December at least that&#8217;s the arrangement. But I&#8217;m also allowed to do whatever, you know, my own stuff as well. So if you spot a video about me making pizza or preparing dough, somehow I can thread WordPress into that, I will. I probably can actually because I&#8217;ve got a dough calculator.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:41:20] <strong>Nathan Wrigley:</strong> With your pizza plugin, I&#8217;m sure that there&#8217;ll be ways of getting those messages across. I think we&#8217;ll knock it on the head there, as we say in the UK. Best of luck. I&#8217;m sure luck is not the thing that you need, but I hope it goes well, and I hope that you enjoy it and that obviously the crowd of people who come along gain a lot of knowledge from everything that you&#8217;ve done.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Just before we go, I think we should probably say where we find you online, where that YouTube channel is, or your website, whichever you prefer. Both if you like.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:41:46] <strong>Elliott Richmond:</strong> Yeah, you&#8217;ll find me on YouTube, which is elliottrichmondwp. I do have an Elliott Richmond, which is all of my personal stuff, so don&#8217;t get that confused with the WordPress stuff. It&#8217;s elliottrichmondwp. And you can find my blogs and my brain dumps on elliottrichmond.co.uk. And that is double L, double T by the way.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:42:07] <strong>Nathan Wrigley:</strong> Yeah, as I was typing your name in, subconsciously it always ended up with one T. I don&#8217;t know what was going on there. But all the Elliots in my life have got a single T. E-L-L-I-O-T-T, and then Richmond, as you might imagine.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you go to wptavern.com and you look for the Elliott Richmond episode using the search functionality, then you&#8217;ll get that episode, I&#8217;m sure. And all of the links for anything that we have mentioned, so the YouTube channel and the website, what have you, that will all be in there, one click. Along with a transcript of everything that we&#8217;ve talked about as well. So Elliott Richmond, thank you. Good luck with 2026 and thanks for coming on the podcast.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:42:46] <strong>Elliott Richmond:</strong> You&#8217;re welcome and thank you so much for having me.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:42:48] <strong>Nathan Wrigley:</strong> You&#8217;re very welcome.</p>\n</div></details>\n\n\n\n<p class=\"wp-block-paragraph\">On the podcast today we have <a href=\"https://elliottrichmond.co.uk\">Elliott Richmond</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Elliott’s been deep in the WordPress community for over twenty years, developing since the early days, back when WordPress was yet to be forked from b2. He’s freelanced, built with multiple CMS systems, and has contributed creatively to the community, including releasing a WordPress advent calendar way back in 2013. He’s an active WordPress developer, content creator on YouTube, and, unexpectedly, a part-time pizza vendor, running a thriving pizza business powered entirely by WordPress tools.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Many listeners will know Elliott for his technical videos, but today we discuss how WordPress has served as the glue for unexpected ventures, like scaling a local pizza business during lockdown using WooCommerce, Jetpack, and custom plugins. Elliott’s experience showcases just how flexible WordPress can be, whether for websites, unique ordering systems, or even streamlining business processes for other niches.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Recently, Elliott has been asked by Automattic to create educational content around WordPress.com, giving him early access to features and allowing him to share his workflow and insights with a broader audience. He talks about his approach to content creation, balancing scripting versus improvisation, and details his low-tech kit, from iPhone cameras to DIY lighting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Throughout the episode, Elliott shares how community connections and feedback loops, especially via YouTube comments, shape his work, and he discusses the new opportunities for content creators within the WordPress ecosystem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re interested in WordPress beyond websites, curious about how to turn technical know-how into educational video content, or just want to hear about WordPress-powered pizza (and who doesn’t), 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\">Elliott featured in WP Tavern before:  <a href=\"https://wptavern.com/24-wordpress-snippets-til-christmas-submissions-open-for-2019\">24 WordPress Snippets ’til Christmas, Submissions Open for 2019</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.youtube.com/pootlepress\"> Jamie Marsland on YouTube</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://gutenbergtimes.com\"> Gutenberg Times</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://xdebug.org\"> Xdebug</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://kagi.com\">Kagi Search Engine</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.blackmagicdesign.com/products/davinciresolve\"> DaVinci Resolve</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.youtube.com/@elliottrichmondwp\">Elliott&#8217;s YouTube channel</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://elliottrichmond.co.uk\">Elliott&#8217;s website</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 Apr 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: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:55:\"Open Channels FM: Reducing Stress in Website Management\";s:7:\"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=2551246\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://openchannels.fm/reducing-stress-in-website-management/\";s: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:182:\"Website managers face overwhelming tasks daily, necessitating prioritization, proactive communication, and streamlined processes to reduce mental load and ensure client satisfaction.\";s: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 Apr 2026 13:34: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: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:91:\"Open Channels FM: Building Better Web Security Through Layered Strategies and Collaboration\";s:7:\"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=2551715\";s:7:\"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:98:\"https://openchannels.fm/building-better-web-security-through-layered-strategies-and-collaboration/\";s: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 this episode, host Adam Weeks discusses cybersecurity strategies with Andrew Killen, Aaron Campbell, and Mart Virkus, exploring the collaboration essential for addressing evolving cyber threats.\";s: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 Apr 2026 09:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:99:\"Open Channels FM: Latest Jetpack Social Updates and the Return of X Integration for WordPress 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2551633\";s:7:\"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:106:\"https://openchannels.fm/latest-jetpack-social-updates-and-the-return-of-x-integration-for-wordpress-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:208:\"In this episode, Derek Hanson chats with Devin Walker about Jetpack Social updates, including interface redesign, Twitter integration, AI features, and upcoming WordPress 7.0 enhancements for WordPress 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:\"Tue, 31 Mar 2026 11:33: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: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: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:41:\"Open Channels FM: TestAlly for Developers\";s:7:\"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=2551572\";s:7:\"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:48:\"https://openchannels.fm/testally-for-developers/\";s: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:157:\"The Hackathon team discusses their AI tool, TestAlly, focusing on improving accessibility for developers while enhancing collaboration and business benefits.\";s: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, 30 Mar 2026 12:14:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:64:\"Open Channels FM: The Case for Connecting Decentralized Networks\";s:7:\"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=2551253\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://openchannels.fm/the-case-for-connecting-decentralized-networks/\";s: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:200:\"The discussion emphasizes the complexity of creating a universal decentralized social network, highlighting the importance of innovation, competition, and building bridges between differing protocols.\";s: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, 30 Mar 2026 07:47: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: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: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:20:\"Matt: JAŸ-Z Returns\";s:7:\"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=151726\";s:7:\"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://ma.tt/2026/03/hov/\";s: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:851:\"<p class=\"wp-block-paragraph\">Since <a href=\"https://www.nytimes.com/interactive/2017/11/29/t-magazine/jay-z-dean-baquet-interview.html\">he spoke to Dean Baquet in 2017</a>, JAŸ-Z hasn&#8217;t done an interview. Hov&#8217;s back! <a href=\"https://www.gq.com/story/jay-z-cover-interview-april-2026\">He sat down with GQ</a>, and it&#8217;s a lovely listen and read. </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 played enough defense, 2026 is all about offense.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Your morality defines who you are, not what you’ve attained.</p>\n</blockquote>\n\n\n\n<figure class=\"wp-block-embed alignwide 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>\";s: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, 30 Mar 2026 00:44:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:99:\"Gutenberg Times: Gutenberg Changelog #129 Artificial Intelligence, WordPress 7.0 and Gutenberg 22.8\";s:7:\"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=45087\";s:7:\"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-129/\";s: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:66144:\"<p class=\"wp-block-paragraph\">In this episode, Birgit Pauli-Haack welcomes Beth Soderberg to discuss key updates in WordPress 7.0 and Gutenberg 22.8. They kick off with small talk about shifting seasons in Munich and Virginia before diving into the new content guidelines in Gutenberg 22.7, focused on standardizing editorial voice across AI and human content contributors. Both speakers express healthy skepticism about AI-generated content, stressing that while AI assists with research and “grunt work” like alt text or excerpts, the core value in writing remains human expertise and review. They caution about automation pitfalls and emphasize validating all AI outputs.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The discussion shifts to the new WordPress AI connectors, which let users connect to services like OpenAI, Gemini, Anthropic Claude, and others—including local providers such as Olama and European alternatives like Mistral. Birgit Pauli-Haack explains the evolving infrastructure allowing developers to add and switch connectors with ease, and encourages the community to experiment and test.</p>\n\n\n\n<p class=\"wp-block-paragraph\">A central topic is the release of WordPress 7.0, with a highlight on the increased minimum PHP requirement to 7.4, likely to disrupt agencies with older sites. The admin’s new look-and-feel is poised to confuse some clients, demanding extra support from agencies. Beth Soderberg also celebrates practical improvements: cover block video embeds using external sources, block visibility by screen size, pattern overrides, breadcrumbs block, and streamlined font management. Both speakers note the importance of hidden, friction-reducing features and the advancement of developer-facing infrastructure. The episode closes with a preview of ongoing enhancements in Gutenberg 22.8 and beyond.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-129/#shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-129/#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: Beth Soderberg</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://bethink.studio/\">Bethink Studio</a></li>\n\n\n\n<li><a href=\"https://profiles.wordpress.org/bethsoderberg/\">WordPress.org Profile + Slack</a></li>\n\n\n\n<li><strong>Talks by Beth Soderberg</strong>\n<ul class=\"wp-block-list\">\n<li><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-122-gutenberg-21-8-and-wordpress-6-9/\">Gutenberg Changelog #122 – Gutenberg 21.8 and WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://wordpress.tv/2025/07/25/my-process-for-building-a-custom-wordpress-theme-in-2025/\">My Process for Building a Custom WordPress Theme in 2025</a></li>\n\n\n\n<li><a href=\"https://wordpress.tv/2020/04/16/bill-ericksonellen-bauer-beth-soderberg-case-studies-how-to-prepare-your-theme-for-gutenberg/\">Bill Erickson,Ellen Bauer, Beth Soderberg: Case Studies – How to Prepare your Theme for Gutenberg</a></li>\n\n\n\n<li><a href=\"https://wordpress.tv/?s=beth%20soderberg&amp;sort=newest\">And more</a></li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">AI in WordPress</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/ai/2026/03/23/guidelines-lands-in-gutenberg-22-7/\">Guidelines Lands in Gutenberg 22.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/ai/2026/03/25/call-for-testing-community-ai-connector-plugins/\">Call for Testing: Community AI Connector Plugins</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/ai-provider-for-openrouter/\">AI Provider for OpenRouter</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/ai-provider-for-ollama/\">AI Provider for Ollama</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/ai-provider-for-mistral/\">AI Provider for Mistral</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/ai/\">AI Experiements plugin</a></li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>WordPress Core and Gutenberg</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2026/03/25/wordpress-6-9-2-retrospective/\">WordPress 6.9.2 retrospective</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2026/03/wordpress-7-0-release-candidate-2/\">WordPress 7.0 RC2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/03/25/whats-new-in-gutenberg-22-8-25-march/\">What’s new in Gutenberg 22.8? (25 March)</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Dev Notes</h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2026/03/16/pattern-overrides-in-wp-7-0-support-for-custom-blocks/\">Pattern Overrides in WP 7.0</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/03/15/pattern-editing-in-wordpress-7-0/\">Pattern Editing in WordPress 7.0</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/03/15/block-visibility-in-wordpress-7-0/\">Block Visibility in WordPress 7.0</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/03/15/dimensions-support-enhancements-in-wordpress-7-0/\">Dimensions Support Enhancements in WordPress 7.0</a> </li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/03/15/custom-css-for-individual-block-instances-in-wordpress-7-0/\">Custom CSS for Individual Block Instances</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/03/15/new-block-support-text-indent-textindent/\">New Block Support: Text Indent (textIndent)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/03/18/introducing-the-connectors-api-in-wordpress-7-0/\">Introducing the Connectors API in WordPress 7.0</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/03/24/introducing-the-ai-client-in-wordpress-7-0/\">Introducing the AI Client in WordPress 7.0</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/03/24/client-side-abilities-api-in-wordpress-7-0/\">Client-Side Abilities API in WordPress 7.0</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>Welcome to our 129th episode of the Gutenberg Changelog podcast. In today&#8217;s episode we will talk about WordPress 7.0 and Gutenberg 22.8. I&#8217;m your host, Birgit Pauli-Haack, curator of the Gutenberg Times and full-time core contributor for the WordPress open source project sponsored by Automattic. With me today, and I&#8217;m really happy about that, is again Beth Soderberg, founder and CEO of Bethink Studio, a full-service boutique agency and of web experts to tackle any project. Beth has been a longtime WordPress theme builder and WordCamp speaker. She&#8217;s also been an early adopter of the blog editor and block themes. Beth, how are you today? Welcome to the show.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>I am well. How are you today? Thank you for having me.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>I&#8217;m good, I&#8217;m good. We have winter in Munich again. It was spring and now it&#8217;s back to winter. So I&#8217;m happy to get out of the town for WordCamp Asia next week. So yes, I&#8217;m really happy about that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>We&#8217;ve been switching from winter to spring every day here. Every day in Virginia. Yep. It&#8217;s different every day.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah. So what&#8217;s the weather doing? Well, I don&#8217;t know.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>No, I&#8217;ve had to look every morning because it&#8217;s in the last week I&#8217;ve been outside in a winter coat and a tank top and rain boots and you just don&#8217;t know. You wake up and it&#8217;s a surprise.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Well, it&#8217;s the beauty of surprises. But who likes surprises? I want my spring be steady.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg:</em> Yeah, I agree.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Announcements</h3>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>All right, so under the announcements we have one thing that&#8217;s that content guidelines landed in Gutenberg 22.7. We didn&#8217;t really talk about it with Maggie Cabrera at the last episode, but the WordPress AI team has launched guidelines. They are live experiments in the Gutenberg 22.7 or Gutenberg plugin and this project creates a single source of truth for site standards and ensures that everyone, humans and AI tools, follow the same editorial voice and content rules. By providing this infrastructure layer, WordPress can finally maintain a consistency across content contributors. So that&#8217;s so far from the experiment post that I&#8217;m definitely going to share in the show notes. When you want to use AI for helping you produce content, you definitely want to store some of the standards somewhere. And the experiment lets you do this on your website in your interface with a nice interface for that. I don&#8217;t know how I feel about this because I have been using AI quite a bit in the last two years and some of it was for content creation ideas. But the writing is still kind of mostly a human factor. But it helps me for research and it helps me for learning. So I&#8217;m not quite sure how that translates to a WordPress site, but I guess if you have ongoing content reproduction that is more service oriented, then you might want to use the help of LLMs or something like that. What do you think?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>I&#8217;m skeptical for the same reasons. I think that I have had clients ask for something like this. But the more those clients have actually used AI to create content, the more those very same people who had announced that they were going to create all of their content through AI decide that they are going to use AI for research and then create their content. So the AI in actual practical use has been more about reducing friction in that discovery research phase of writing and less about creating the writing itself until you get to the editing part when it becomes helpful again for grammar. But that actual connecting ideas and proving expertise piece is where AI can&#8217;t do it. And you need something, somebody who actually understands what they&#8217;re reading to piece together the logic of it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>I can also see, and we will see this in that you use AI to write an excerpt or to give you suggestions for titles or make sure that there&#8217;s an alt text on the image. I think these grunt work tasks kind of thing of AI is really helpful, but I think the human ideas are still. Well, humans hallucinate so much better than AI can ever can. Right.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>How can we possibly replicate that? And I think there&#8217;s also a place for it with things like you mentioned the alt text. Right. Having it generate them all and then validating that it did it correctly is much faster than writing it all yourself. That is where we&#8217;re going to see these things actually become practical. Right. There&#8217;s a lot of big ideas about it, which makes sense when you&#8217;re dealing with a new technology and an innovation in a major workflow. But in actuality, I think that&#8217;s more how people are going to use it. And I think if people set it up to automate everything and then never look at it, never validate it, that&#8217;s people are just going to get in trouble over that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>And I, you know, I use it a lot to generate fake content so that I can show someone what something will look like knowing that the content I&#8217;m showing them is not real. Right. But when you&#8217;re dealing with real content, the biggest mistake I&#8217;ve seen over and over again, and humans will learn because we always eventually do. But the mistake is not reviewing what AI has done.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah, definitely. Yeah. It&#8217;s not a replacement. It&#8217;s a tool that you need to validate like any other tool you have to do. I can see that if you have a longer text like for 4,000 words or something like that, you could actually use AI to identify the gaps. If a reader goes through it and say, okay, there is a gap because it didn&#8217;t explain why something happens. I think those tips are really helpful, especially when you have longer text or you want to focus on one problem and just kind of figure out what&#8217;s in scope and out scope. But I think that&#8217;s more like an advisory kind of thing and not a doer.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>Yeah, validating. Because sometimes I love Grammarly Pro. Grammarly the free version is very annoying, but if you pay it becomes a really useful tool. But even then, the content suggestions it makes, sometimes they tighten up your language and they make it. They add the commas, which is the thing that I don&#8217;t do naturally on my own apparently. But sometimes they change the meaning completely.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>And that&#8217;s when you&#8217;re like, nope, thanks for the suggestion. That&#8217;s a no.</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>Beth Soderberg: </em>I think how this type of thing used well, will make people more efficient. But I also can see it creating a mountain of work for somebody who doesn&#8217;t actually need to go through all of these ridiculous suggestions about it. And I think that deciding when to use it, when it makes sense, those strategic decisions about how to use it are going to be what makes it either something that really helps somebody in their publishing workflow or really hinders somebody else.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Well, if you&#8217;re a single blog blogger having a little editor go through that and give you some tips that might not be a bad idea, but sometimes. But right. If you have been blogging for many, many years, you don&#8217;t need things like that. It changes your voice and it changes the outlook. That&#8217;s what the guidelines are actually for that you can create some of the guidelines as it meant to be to help AI to streamline some of that stuff and also to know about what you want to do. And that certainly helps.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>Yeah, yeah.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Community Contributions</h3>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Speaking of AI, what I found in so in 7.0 WordPress. So getting closer to that release, there is now a new connectors page that you could connect to an OpenAI to Google Gemini or to Anthropic Cloud from your site. And if you have certain tools that help you with those connections. So there are AI providers for other AI systems like I just discovered three of them. One is the AI provider for Open router or router depending on which English speaking country you go to. It&#8217;s a little bit different. So open, I say Router is a service that lets developers use many different AI models like those from Google OpenAI but also others through one simple connection. And the provider was developed by Jonathan Bossenger who is on the AI team and talks about AI on the developer blog. There&#8217;s also an AI provider for Ollama, and Ollama is a local system where you can connect local LLMs so you can download an LLM set and Ollama helps you connect that with the task that you want to do. The benefit of Ollama is that it&#8217;s on your server and it doesn&#8217;t go out to the third-party services, but you still need a provider and connector to it. You can do this on any VPS connection or virtual private server system because you have room and space there to download and add certain things. But it&#8217;s definitely important for companies that want to not get data outside of their system. </p>\n\n\n\n<p class=\"wp-block-paragraph\">And the last one is for Europeans. The AI provider for Mistral. Mistral AI is a French AI company founded in 2023 by a former Google DeepMind and Meta researchers and they built and publish large language model and be a respected independent AI in Europe. Speaking of this, what that all comes together is that the AI team and with that Lauri Saarni published a call for testing for community AI connector plugins. There are certain links to the plugins and the connectors, so it would be really cool if you&#8217;re interested in that part of it, to actually go ahead and test things and report back what you find and what you didn&#8217;t find and how it all works for your site. It&#8217;s a totally different approach for working with the site using AI as we discussed. But it might be pretty interesting for developers to connect with all those AI providers and provide services in a plugin or something like that. </p>\n\n\n\n<p class=\"wp-block-paragraph\">And if you are not a developer, you can install the AI Experiments plugin that also comes from the core AI team and it will show up on the Connectors page with a link to the plugin and what you can do with it. And it has these things like create an excerpt or check the alt text or create a featured image just so you can kind of get a feel for these kinds of works on the WebPress site. Do you have, do you think you have a need for. To kind of use some of the providers for your agency or for some clients?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>I think for some clients it has started. I think that for the agency itself, not yet. We have started to do more writing publicly, but really what we&#8217;re doing is turning internal communications to clients into public facing documentation so that we can point to them more easily. So it&#8217;s not something we need help with. In the same way, I think for some clients we have started to integrate things like this in an experimental way. Right. And there are, as with anything that&#8217;s new, people don&#8217;t know how to use these things yet. And I am not against experimenting with a new thing. I love the new stuff, but at the same time I&#8217;m cautious about putting new things into a production environment without really making sure that it makes sense. Some of these, in terms of experimentation, like I will install them and actually Grammarly is a great example. It took me several years to decide that I was fine with it because I tried it and it was annoying. And then a few years later I tried it again and it was still annoying. And then one day I realized that it really was like their premium suggestions really were fixing my comma issue, which is a known issue I have with writing and grammar. I just don&#8217;t put commas anywhere.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>I put them in randomly and so there&#8217;s a few commas.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>But you know, I experimented with the tool probably three times before I was like, you know what, let me try the premium version and see how that goes. And I tried it and a few days later I was like, yeah, this is actually making my writing better. But it was one of those, like I was monitoring over time if it really made sense with my workflow.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah, yeah. And that&#8217;s how I approach it too.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>Yeah, yeah, yeah. That&#8217;s how I felt about these. And I think what&#8217;s exciting about it is that the infrastructure to do it is becoming more full fledged. But that does not mean people know how to do it yet.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Right.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>And so that&#8217;s the next step is that experimentation phase collectively of how, what. How can we make these tools that we&#8217;ve now created function in the best way.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>So I really appreciate that the WordPress core developers think about the plumbing of all these services and putting it all the foundation in to open up that total space for freedom for the developers. And there&#8217;s a standard there on how to approach certain. So if you are as a site owner, don&#8217;t have a plugin that kind of taps into LMMs and you open up Gemini for it, you couldn&#8217;t switch just easily to Claude when you think that&#8217;s a better fit for that problem, but the plugin will still work. So that&#8217;s actually what this whole connector thing is about. And it just came up as for the AI providers, but actually the connector API is for any external service standard. So a standard for any external service. So if you need the OpenStreetMap on your site and you have an API key, the plugin can actually use the connectors API to monitor those API keys and just put it in there. The plugin doesn&#8217;t have to come up with its own interface for that, which a lot of plugin developers did for the last 15 years. Yeah. But now they can could actually throw away that piece of the plugin and just tab into the connectors API and don&#8217;t have to maintain that piece of the code.</p>\n\n\n\n<h3 class=\"wp-block-heading\">What’s Released &#8211; WordPress 7.0 RC2</h3>\n\n\n\n<p class=\"wp-block-paragraph\"> But anyway, so that&#8217;s kind of the bigger picture behind it. And that&#8217;s all coming with WordPress 7.0, which we are now getting to the more practical stuff of WordPress 7.0. So first of all, the WordPress 7.0 release candidate 2 has been published this week. It&#8217;s crunch time. The final release is only two weeks away. So if you haven&#8217;t tested it, now is really the time to get in there and figure out if your theme plugins and sites actually still work with 7.0, and the developer notes are published. The field guide is in the works and I will continue the list of dev notes in the show Notes like we did the last two episodes. I also know because I have been working on it. The Gutenberg Times Source of Truth is almost done and will be published before this episode actually hits your favorite podcast app. So you get an additional link there. So, Beth, did you get a chance to look over the WordPress 7.0 features? What are the most important ones for you and your fellow agency owners and developers? Is there anything that you are really excited about?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>Yes and yes. So the first thing that I think is going to be honestly hugely problematic for a lot of agencies is the change in PHP minimums, because I think that there are. I know that there are a lot of folks sitting on older sites, older themes, maybe they&#8217;re stuck at PHP 7.1 and there are old things out there. And I think that this PHP requirement jump is going to catch some people off guard. So it jumps from it&#8217;s we&#8217;re now requiring 7.4.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>And if you do, it&#8217;s already 6.9.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Right?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>Yeah. But I think this is going to hit harder. Okay. Because people are going to want the new stuff. Like there&#8217;s a lot in here that is really great and I&#8217;m starting with the thing that I think is going to be most disruptive because I think that people are going to want the other stuff, right? And so I think that that&#8217;s going to catch some people off guard. The other thing that I think is going to be really important is the new admin look and feel because people have been training their clients for many, many, many, many, many years with what it looks like now. And there is a client education need here because when the admin changes, even in minor ways, you get clients that come back and say, what happened? I don&#8217;t know how to do it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Okay, Even if nothing changes except the color, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>Where did it go? Why is this different? And did I do something? Did I write the, that human element of like, hey, you&#8217;re okay, it&#8217;s gonna look a little different, but I promise you&#8217;re gonna be able to do it. Just holler if you have any questions. Right? Because I think that there&#8217;s a lot of at least working with long term clients where you become sort of an advisor on the technology rather than a day to day implementer. And for those folks with something like this, I, what I like to do is say, hey, heads up, we are doing, we never do the major core updates right away. I am a let me see how it goes for everyone else.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Right.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>Type and then if it seems okay, then I&#8217;ll go for it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> So you&#8217;re one of the ones who wait for 7.0.1.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>Absolutely. Unless it&#8217;s been like three weeks and there isn&#8217;t one. Yeah, right. So I either wait for a period of time or I wait for a point release. And if there&#8217;s a point release, I wait at least 24 hours to make sure there&#8217;s not another point release. But point being though, that this is a big enough shift in terms of what people will see and what people can do.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Which part of the admin is actually the one that will disrupt people&#8217;s minds.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>Just I think it looking different at all.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Oh, okay. So we should never change that. Is that what you&#8217;re kind of thinking?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>No, we should absolutely change it. But because we have not changed it for many, many, many years, it will be a surprise. And I think that it&#8217;s easy as folks who are in these systems every day to be like, wow, they finally fixed that. That&#8217;s great. That might be my reaction to many of these changes. Right. But I also know when I log in to pay my credit card. And they&#8217;ve changed it all. And even though the buttons are the same, it looks different. I don&#8217;t have as much confidence about clicking the button. And there&#8217;s this. The vast majority of people who are maintaining the contents on these sites day to day are marketing people, communications people, regular everyday writing people. And they are not sitting there thinking about how the structure of the software works all the time the way we do.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah. But they still get their work done.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>They still get their work done. What I like to do with clients is just reduce friction by increasing confidence.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>Right. And so, like, my message to them is going to be, hey, you need to know that this is going to look different, but your workflow in terms of the things you know how to do is the same. Don&#8217;t let it freak you out. You&#8217;ve got this. Keep going. Right. But like, just that little bit, because that&#8217;s. That is 100% what gets people. It&#8217;s the smallest stuff. They just need to know, like, hey, the problem&#8217;s not me. Oh, wait, there&#8217;s not a problem. It&#8217;s fine. And then they&#8217;re good.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah. Yeah. It&#8217;s the first five seconds. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>It&#8217;s that psychological adjustment. And I think because it hasn&#8217;t changed for so long that it&#8217;s just going to be something that I mentioned.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Is there anything else that you are really excited about or is it just.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>I know. Okay.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Things change. Okay. I don&#8217;t like it to change.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>Things change. I&#8217;m really, really excited about the cover block video embeds.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>That is really, really going to reduce the size of things as they load for a lot of websites. And that is fabulous. In addition to improving workflow, all of the things around block visibility by screen size make me really happy. I&#8217;m really happy about the changes in the header block. And I&#8217;ve been building this into themes for years. And the only thing that makes me nervous about it is that I need to go back and see how it impacts the things I&#8217;ve already built that replicate this feature.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>But you mean the navigation overlays?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>The navigation overlays. Yeah. Because you&#8217;re going to have such increases in both accessibility compliance and SEO optimization just by virtue of having the option to manage your headings visually versus syntactically. So I&#8217;m very excited about that. I love that our revisions menu now has visual changes.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>Because I know that most people looking at the markup that&#8217;s been in there lately are like, I don&#8217;t know.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah. I have to squint so much to look through the code to find things. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>And then there&#8217;s a few exciting changes to the navigation and the better workflows for pattern overrides. Yeah, it was there before, but it was one of those mystery off menu features if it was there, if you knew how to find it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah, yeah. Right.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>So those are the things I&#8217;m most excited about. I think there&#8217;s some other cool stuff in there and I am excited about the general infrastructure that we were just referencing that is being solidified with this release. And I think that piece may not be as exciting on the outset because it&#8217;s infrastructure. It&#8217;s like nonprofits have a hard time funding infrastructure process projects. It&#8217;s the same reason. But it lays the groundwork for a whole new level of experimentation. I&#8217;m excited to see where that goes and I recognize I think you said it very well a few minutes ago the thoughtfulness to create an extensible infrastructure that has gone into these features in the roadmap and sort of planning moving forward.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>You mentioned the cover block video embeds. That means that you can have a video just to catch up with our listeners. It&#8217;s to use a URL to YouTube or to Vimeo and pull that in into a cover block instead of uploading the video to the website because that reduces the cost of hosting and bandwidth for the website. Definitely. And it also you don&#8217;t have to maintain the speed and all that on your own server. So it&#8217;s always good to offset that into a different service. How are you feeling about the manage the fonts from the appearance menu directly instead of hunting it down under the fonts typography menu on the slobber styles,</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg:</em> I&#8217;m feeling really good about that. It remains to be seen for me the biggest issue I have with font management. I am not sure it might be addressed here, but I need to experiment. When you get a font from a total third party non-standard like independent type foundry place getting those integrated, there has still been some friction. So I&#8217;m excited about it being easier to find in general. I think that&#8217;s great. .</p>\n\n\n\n<p class=\"wp-block-paragraph\">I will be experimenting a little bit with if it reduces friction in some of these more edge cases. Because if you&#8217;re using a Google font it&#8217;s great and it&#8217;s been pretty good for a while. But if you are integrating something from another provider, if it&#8217;s a big provider the friction is not as bad. But if it&#8217;s like this obscure type foundry that makes like only these little types of historic fonts, which I run into recently, getting it actually integrated properly, it&#8217;s really hard because you&#8217;re dealing with not the most sophisticated type foundry in terms of the format of their files and they&#8217;re not necessarily plugging in as best as the totally optimized stuff from the more common sources. So, yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Is it more a format issue or is it more kind of how it scales in different font sizes and different typography features?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>It&#8217;s a format issue with the font files themselves. And so I think some of it is probably an education piece for people who make fonts, but I also know that most developers don&#8217;t know that much about how fonts are made. And so when you put those two things together, you create some problems. But I think this is a huge step towards getting to the point of being able to solve the edge cases. Right. Because right now finding where you manage the fonts is difficult.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Right? Yeah, totally. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>We&#8217;re going in a great direction, getting into the nitty gritty of which font providers are supported and that I think that&#8217;s the next step from here, personally, because I do think there&#8217;s a homogeny that started from a type standpoint around everyone&#8217;s using Google fonts because they. It&#8217;s easy.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah. But it&#8217;s also problematic for European sites.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>Yeah, right, yeah. Because the different requirements over whether you&#8217;re hosting the font files or Google is hosting the font files, like, then you&#8217;re getting all into all of these legal technicalities of where the font is and who owns it. And I&#8217;m glad I&#8217;m not a lawyer.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah, me too. So, all right, so there are a few developer goodies coming, so to speak, down the pipeline. The PHP-only block registrations and then the pattern overrides for custom blocks that you already mentioned. Those. I think there are a few smaller stuff like the HTML block enhancements where you can put the CSS separately from the JavaScript and the HTML. You could actually kind of create your own little app there, depending on what privileges you have. I found that there are some problems when you don&#8217;t have admin privileges. The HTML block really gets scrambled, but that&#8217;s an overall kind of problem with the capabilities, I think. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>Oh, I forgot the breadcrumbs block. That. That&#8217;ll help a lot of things.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>So. Yeah, yeah. I&#8217;m also sure that a lot of agencies and site owners already had that problem solved through like for instance, the Yoast SEO plugin had already programs for many, many years. Yeah, yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>But I like my websites to be as lean and efficient as possible. And this feels like when, for a long time I was using Coblox for accordions. Right. And in the beginning, coblox had a lot of things that Core didn&#8217;t. And so you were using a bunch of things. And eventually it became that I was only using the accordion everywhere. And then one day it became possible to do the equivalent in Core and I was like, great, I can get rid of this plugin that&#8217;s only doing this one thing, but has all this other stuff. And I think that&#8217;s what makes me excited about this. Yeah. You can do it through Yoast. There&#8217;s a number of ways to do it. There&#8217;s some independent breadcrumbs block plugins that are really good.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah. I know that Justin Tadlock had a very good breadcrumbs plugin and he was advising on the core implementation there.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>Yeah, right. Yeah. And I&#8217;ve used Justin Tadlock&#8217;s breadcrumbs plugin for a long time, and I&#8217;m not going to rip it out of something just because it&#8217;s there. It works. It&#8217;s good. But for something else where, like, you only have this one thing that you&#8217;re really using in this big suite of plugins. Yoast is one of them. Jetpack is one of them. Any sort of like cadence blocks, code blocks, any collection of a large number of things when you&#8217;re only using one of them, you should be considering the idea that maybe you shouldn&#8217;t use it at all. And that&#8217;s what makes me excited about the ability to do this through Core, because it allows for some of that extra bloat to be stripped away in some circumstances.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah. All right. Anything else that you want to kind of cover on 7.0 for your agency of developing theme building needs?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>I think that the PHP-only block registration, we sort of glanced over it, but I think that&#8217;s a very exciting big deal. It opens up, you know, the whole challenge. I think from a developer standpoint, the whole time with Gutenberg has been, how do I level up to do this new thing? How do I level up to do this new thing? And this opens that door wider. And anything that we are doing to open that door wider is great. Similarly, there&#8217;s a few things in here that are just really tiny that I think will help people. They&#8217;re not like, again, reducing friction. So little enhancements to the query loop, adding some new navigation stuff that is just really tiny, but really Helpful dimension support for width and height. That sounds crazy, right? Like it&#8217;s little tiny stuff that reduces friction and stuff. So there&#8217;s more of that in here. Like the concept of the grid block being responsive is really great.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Well, it was responsive before, but there was a setting where it wasn&#8217;t and that&#8217;s kind of changed now, right? Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>So, yeah, I just. There&#8217;s a lot of hidden goodies in here that reduce friction. I do think the biggest things to look out for are if your themes are compatible, if your plugins are compatible, and if you have built in things that replicate some of this functionality. How does that work? Because we&#8217;re starting to enter, at least for how I&#8217;ve been building themes, a zone where things I have done historically to account for some of these needs are being subsumed by core, which is great. I just don&#8217;t know how it&#8217;s going to work. So, you know, I think that&#8217;s going to be different for everyone in terms of which things it is. But hopefully, and I say hopefully because I know that we have a unified development philosophy about how we build our themes and there&#8217;s sort of a continuous logical thread for our themes as they&#8217;re built over time. Hopefully agencies who have an internal logic to how they have been building themes can look at this list and say we should look at how we do that and make sure it still works. Yeah, right. Because there&#8217;s also going to be agencies where they have a mishmash of things and they don&#8217;t know and it&#8217;s going to be a one off for each site to see what happens. And you know, that goes for anybody who&#8217;s inherited themes too.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah, but that&#8217;s also for any of the WordPress releases. Yeah, you have to go through a certain testing phase there.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>Yeah, I think that&#8217;s true. And I think some of this is honestly that it&#8217;s been a while since we&#8217;ve had a major release and so the quantity of little things feels more.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah, absolutely.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>And I think that&#8217;s part of why my reaction is this way, because I haven&#8217;t had this thought process.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>At least five months.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>At least.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah, six months. Nine came out December 2nd.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>Right. And so as somebody who was used to the four times a year cadence, it is longer and what&#8217;s packed into it is greater. And so I don&#8217;t think that&#8217;s necessarily bad, but it is an adjustment in terms of absolutely how you review things and what you&#8217;re looking for. And it&#8217;s more of a. This one feels more like a surprise. Not that it is a surprise, but it feels more like a surprise because it is not on this schedule that I had come to expect. Right. And I think we&#8217;re getting towards a new schedule, which is really great. But until we are all psychologically adjusted to whatever that new schedule is, it&#8217;s going to be a slightly bigger task to review because there&#8217;s more. And psychologically it&#8217;s going to be like, oh, right, I guess that&#8217;s happening and you&#8217;re, you know, you got to go do it. Yeah. So I just think it&#8217;s just. There&#8217;s a little more and the timing is not as predictable.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah. And I think that the break that was in Twenty Twenty-Five kind of skewed that anyway. Yeah. So we had an April 25, we had a release, and then the last. The next one wasn&#8217;t until December. Yeah. So there were eight months that kind of 15 Gutenberg plugin releases. It didn&#8217;t feel that much that it is now in 7.0, because that was just kind of coming up out of that pause. And now there&#8217;s a real excitement about the Real Time collaboration. There&#8217;s excitement about AI. Yeah. So, yeah, it feels that there are quite a few heavy new features in there that also kind of drown out some of the really quality of life things that we have been waiting for quite a bit here.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>Right. Yeah. And I. I think it&#8217;s like coming back from a long vacation, like, oh, ooh, this is really exciting, you know, but that&#8217;s how. That&#8217;s how it feels and it&#8217;s good. But it is, absolutely. I think that Twenty Twenty-Five, you didn&#8217;t have to be as vigilant because it wasn&#8217;t happening.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yep, it was a good break.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>I think everyone needed it. Honestly, I think everyone really needed it. I know I needed it. But it is, you know, getting back into the. The groove of things is. Is where we are now.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>So. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>For which I am thankful, but it&#8217;s still an adjustment.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Me too. Yeah. And now with 7.0 kind of out the door almost. Yeah. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg 22.8</h3>\n\n\n\n<p class=\"wp-block-paragraph\">We are looking at Gutenberg 22.8 that has been released. Was released this week also kind of what comes into 7.1. It&#8217;s already starting and people are discussing things. So although there were quite a few PRs that were either all part of the new WordPress UI package that hasn&#8217;t been merged into Core yet, or it&#8217;s bug fixes for the connectors or the Real time collaboration for 7.0, so some of the PRs are actually backported to the release candidates and the beta to the release candidates. </p>\n\n\n\n<p class=\"wp-block-paragraph\">But let&#8217;s talk about some of the things that will not be in 7.0, but definitely in 7.1 and what&#8217;s new in the Gutenberg plugin. So the first thing is the navigation support for the current menu item. So in theme JSON, meaning when you have a navigation and you&#8217;re on a current page that&#8217;s part of the navigation, how do you signal that you are at the current page right now in the navigation? And that has been missing for quite a while or people have just did some CSS workaround of that, but now you can actually style that in theme JSON. And so this is cool. What&#8217;s also cool is that there is an interface for the states like Hover Focus current. I&#8217;m not sure if that&#8217;s going to be in there, but it&#8217;s also part of making the navigation and the hover states and the pseudo support that comes into 7.0, but now it comes also to the interface. So that&#8217;s pretty cool.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>That&#8217;s my favorite part.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Which one?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg:</em> The navigation stuff again. The interface around the navigation has gotten a lot better in various iterations of Gutenberg, but there&#8217;s still some stuff that you&#8217;d think you would be able to do that you can&#8217;t. And that&#8217;s what some of this is filling in.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Birgit Pauli-Haack: There have been some great work. Some of it gets into 7.0 and some of it is still ongoing. So I really like the navigation that&#8217;s actually in 7.0, that you can create pages and publish them and have them in the navigation in one workflow kind of thing. You don&#8217;t have to get out of it. You may have to think about it. You just kind of create the page and then you fill it in with content later.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>Yeah. And I&#8217;ve seen that in other systems. I don&#8217;t remember what that is. One of those things where some of these changes, you&#8217;re like, you know, I saw that once somewhere. Was it Joomla? Was it Drupal? Was it whatever? I don&#8217;t know. But I liked it. And now it&#8217;s here. And that&#8217;s good.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Absolutely.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>And that&#8217;s how I feel about that because I do appreciate the tiny little decisions that are being considered here by the core team because it seems very small. But the amount of friction you&#8217;re reducing and the amount of time you&#8217;re saving for people is huge.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>It&#8217;s huge. Yeah. Yeah. And it&#8217;s millions of millions of site owners that kind of have advantage. Yeah. Do you want to take the next</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>thing, the tabs menu. So I think this is going to be fun too. So basically we&#8217;ve got a refactor of the tabs menu block. So it&#8217;s basically making this more efficient and making some templating changes to how the tabs block works. And if you look at the actual PR for it, there&#8217;s really good, very detailed descriptions of how. So it&#8217;s making it very clear of it&#8217;s no longer using the template block duplicated in PHP and instead it&#8217;s rendering with per tab context.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Right.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>And that&#8217;s like all gobbledygook to some listeners. Maybe, but like really what it&#8217;s doing is making it more efficient and making it more extensible from a code perspective.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>And also for theme developers.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>Yeah, right. And making it more possible again, opening that door a little wider for more people to be able to work within the code infrastructure. Because that has been the thing that&#8217;s been the biggest challenge in terms of developer adoption of Gutenberg.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah. And the refactor was also necessary to bring it in line with the approach for the accordion block so that certain methods and certain functions can be replicated in a similar way for the TAPS block. I was actually sad to hear that very early that it won&#8217;t make it into 7.0, but I think that was one of the reasons where they said, okay, let&#8217;s, let&#8217;s see if we can kind of align it a little bit more with the accordion block. And it&#8217;s no surprise that Sarah Norris, who has been a guest here at the Changelog quite a bit, she also created the accordion block and she has been now instrumental on the restructure of the tabs menu and inner blocks to get it in line and we have make it more streamlined for developers and theme builders.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>The one thing to add that is an exciting piece for especially theme developers is the addition of anchor support for the tabs. So that&#8217;ll help a lot in terms of things like navigation structures and feasibility. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>And also to kind of interlink different pages. You can link to some of the tabs if it&#8217;s interesting enough. Yeah. So I know that WooCommerce is using that for their products template. So they have built their own one back then and now they get a little bit closer to core, which makes it more extensible and also appreciative they don&#8217;t have to maintain the code for it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>Yep, absolutely.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Which is quite a bit. So right now I&#8217;m fishing around on my computer to find my notes again. So here we are. All right,</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>the next one, the showing one&#8217;s own presence and collaborative editing sessions is I think existentially important and just is really going to help this UI experience from the baseline that&#8217;s being released in 7.0.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>So yeah, I&#8217;m pretty sure that it will actually come to 7.0. That made it into the release. That&#8217;s good. So the next piece is the one that you can have the site logo and icon screen in the design panel. So in the site editor there&#8217;s another menu item now to update the site logo and the icon screen directly from the site editor. So you don&#8217;t have to go out into the settings page and upload everything that you need or into the site logo block or header. You can do it right there from, from the menu. So it&#8217;s really an interesting update to change the site logo and the site icon directly in the design site editor.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>It&#8217;s reducing friction. I think that there&#8217;s a workflow confusion. There&#8217;s the customizer that has become this vestigial organ that sometimes you need, sometimes you don&#8217;t need. Where&#8217;s this? Wait a minute, where do I add css? Is it over here? Is it over here? Is it over here? Could it be here? And I think that we&#8217;re pruning what we need to do through alternate interfaces through changes like this. And the more we can streamline, the better because the biggest confusion I&#8217;ve seen is actually with brand new or like more junior developers who do not know the quote old way. And so the idea that it&#8217;s even there, like they&#8217;ll get stuck because they can&#8217;t figure out where it could possibly be coming from. And then some old timer is like, oh, it&#8217;s over here in this menu that you can&#8217;t see anymore.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah. Or yeah. So the site icon at the site logo has been a hidden place and only until now it&#8217;s kind of coming into the forefront. Yes. So the next thing is another one for the collaboration. I just wanted to point out that by default the collaboration on shared hosting is only. It&#8217;s limited to two users and there is also a method for the hosts to either enable that or disable the real time collaboration. So it might not be as obvious when you go on your site and looking for it. You might not be able to get real time collaboration out of the box. You might need to connect with your host to let that enabled because it&#8217;s such an additional load on a server. That certain server configurations are not meant for it to be in yet. So if you&#8217;re on a virtual private host, I think I mentioned it before, it wouldn&#8217;t. It was a different scenario. But it&#8217;s probably easier to get the collaboration working than if you are on a shared hosting with 10,000 websites on a. On a server where the hosting company will probably restrict that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>Yeah, I think that there&#8217;s going to be a lot of shifts in hosting, either requirements, configuration, pricing options, etc. as a result of all of these changes. And I don&#8217;t know what they&#8217;re going to be yet, but we do need to collectively remember that the AI features, the collaboration components, all of those things are resource intensive and are going to shift how hosting is being utilized and therefore the hosts are going to need to respond in order to account for the actual cost of that change. So I think that&#8217;s a big unknown right now and I think it&#8217;s, you know, there&#8217;s a few hosts where they&#8217;re locking in pricing for a few years, which is cool, but at the same time I&#8217;m like, I don&#8217;t know, in three years is this going to be enough to pay for that? What will it be in three years?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>So I think there&#8217;s a shift coming there and I am not gonna even pretend to know enough about all the details to know exactly how that&#8217;s going to play out, but I think that there&#8217;s enough shift in what types of resources we need from our hosting that there will be a shift. There has to be, because it&#8217;s just so much more resource intensive than what we&#8217;ve been doing in the past collectively.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah. And that is in line with what you said at the beginning, that the PHP requirements. Yeah, it always is also contributing to that because all the newer features. So there might be a. You can&#8217;t upload upgrade to 7.0 until you update your PHP. That&#8217;s totally sure.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>Yeah. And I&#8217;ve read that somewhere. Somewhere I did read that there&#8217;ll be security releases on 6.9 for sites that can&#8217;t go, you know. But then you end up with a situation where you&#8217;re gonna. How many sites are gonna be stuck on 6.9 forever?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>But that has been a problem. Yeah. Because the security team is actually backporting, although officially the release is only supported to 6.8 or something like that, but security team actually backported all the security updates that came with 6.3 or 6.4 to 4 point something. WordPress 4 point something is probably 15 years old. So it&#8217;s still getting security updates. So that definitely is a backwards compatibility promise that even the security team there. It takes a lot of time to backport that. And John Blackburn, one of the leads on the security team, has actually done a retrospective of the latest security updates because you saw that too. It was a. It&#8217;s kind of a galore of releases. 6.2, 6.3, 6.4, 7.4 beta. Yeah, it kind of was in within three days, I think there were four releases.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>It was a lot. Yes. All at once.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>I had a meetup here in Munich and we talked about it. I think the day the 6.4 came out that they were saying, well, is it all hacked or what happened here? Kind of how often do I have to update my WordPress site in a day? And he did a nice retrospective or explaining what happened and what was the reason for that. I&#8217;ll link it in the show notes if you&#8217;re interested. To listeners, it will probably be a little bit less prominent because of all the death notes that came out, but it&#8217;s on the blog on Core.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>I&#8217;m going to go back and listen to that because that hit during a particularly busy time, just for me personally in general. And so it was a little whiplashy to be like what is going on over there? And I think it will be good to be able to go back and just review so that I am aware moving forward of what exactly happened there.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah. And back to Gutenberg 22.8. I mentioned it before. There is a feature that implements the state UI for sudo selectors in the global styles. Maggie Cabrera mentioned that in the last episode. It&#8217;s now available in the Gutenberg plugin so you can test it out. It gives you a. In the global styles on the right hand side you can select the design for your pseudo selectors like hover and focus and all that. It&#8217;s really cool. Hover, focus, Focus, visible and active. Yeah, so you can change all those settings for buttons, for instance. And you don&#8217;t have to use theme JSON for it anymore. So this is pretty cool.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>Yes. And then this one, I think this is fascinating. There is a PR adding client side navigation block with interactive features. That just sounds really fun to experiment with. So what it&#8217;s doing is adding a variant to the Create Block interactive template that allows you to add client side navigation. So this is starting to support the again supporting the infrastructure that exists with actual tooling and UI to use it. So the way that it describes it, this variant provides a self contained working example that mirrors real world patterns, query parameter navigation for pagination, search results, filtered archives and works immediately after scaffolding with no posts or setup required. That&#8217;s really cool. That&#8217;s a really nerdy and very arcane and wonderful. So I&#8217;m excited about that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah. And that variant is for the Create block scaffolding feature, if I understood this correctly. Yeah, it&#8217;s a create block latest. So if you create a custom block, you can have the variant for your client side navigation and scaffold that up. That&#8217;s really cool. Yeah. Well, our developer advocacy team, we are working on a so-called showcase for all the good things that you could do with a website or theme, including some of the interactivity API features. And we will probably release that someday in the next two months I would think. And it will be a music site with albums and musicians and artists and using the tabs and using the playlist and block and then also kind of have some interesting changes in the theme. So it&#8217;s for custom post types and all that. So it&#8217;s going to be really cool. I know that Juan Ma Garrido who put the client side navigation template into the gray block scaffolding, he&#8217;s also creating a plugin to have the music play even if you navigate away from that page that had the list of the music. So it&#8217;s kind of really interesting to see. So you could use it for video and music. So things stay on the forefront on your browser even if you look at other pages on the website. So that&#8217;s one of the features.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>The person, the, the part of me that likes to listen to podcasts from the website themselves really appreciates this.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah. So I, I definitely, once it&#8217;s out, I definitely gonna adopt it for the good changelog podcast.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>So I think always through, we are through with booked. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg:</em> Lots of little, little things, but those are the big exciting things, I think.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah. And there were actually 38 PRs that were backported as bug fixes to 7.0. So it&#8217;s still an ongoing work that is coming out in two weeks and people are still fixing it. </p>\n\n\n\n<p class=\"wp-block-paragraph\">All right, well, I wish you and your agency all the best for that release that all the things that come in don&#8217;t disrupt your work or the work of your clients.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>We have a list. We know where to look for the problem.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Excellent. Yeah. Well, I&#8217;m so happy that you were on the show with me. And as always, dear listeners, the show notes will be published on GutenbergTimes.com podcast this is episode 129 and if you have questions and suggestions or news you want us to include, send them to <a href=\"http://changelogutenbergtimes.com\">changelogutenbergtimes.com</a> that&#8217;s <a href=\"http://changelogutenbergtimes.com\">changelogutenbergtimes.com</a> so thank you for listening and I wish you all a great weekend. Well, or next week. And also toy, toy for the WordPress 7.0 release updates. We will hear each other again in four weeks once I get back from WordCamp Asia. And then we&#8217;ll tackle what&#8217;s coming in 7.1 and what has been in. Good work. Plugin 22.9 and 23.0. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Thank you so much. Beth Soderberg, it was wonderful to have you and your perspective and your opinions on the show.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>Thank you for having me. It was great to be here and to see you again and I wish you safe travels on all of your continuing travels.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Thank you. All right. Yeah, and you take care. And I&#8217;ll put in the show notes how people can connect with you.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>Sounds good.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Of course. All right, you take care. Bye Bye.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beth Soderberg: </em>Bye bye. Thanks, everybody.</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, 29 Mar 2026 08:59:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:26:\"Matt: Community Antibodies\";s:7:\"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=151704\";s:7:\"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:43:\"https://ma.tt/2026/03/community-antibodies/\";s: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:3022:\"<p class=\"wp-block-paragraph\">First, I want to say how great the jazz scene is in New York. I caught a little Latin at my go-to <a href=\"https://guantanamerany.com/\">Guantanamera</a> last night, but the band seemed to be phoning it in a bit, so I walked over to <a href=\"https://jazz.org/dizzys/\">Dizzy&#8217;s</a> and heard an amazing big band performance by the <a href=\"https://divajazz.com/\">Diva all-women Jass Orchestra</a>, they had <a href=\"https://clintholmesmusic.com/\">Clint Holmes</a> leading vocals and I got <a href=\"https://open.spotify.com/album/2m0W0n7zBYmRNs1QAgoa6Z\">Frank Sinatra / Count Basie vibes</a>, so great to see such a tight big band.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In <a href=\"https://wordpress.org/\">WordPress</a>, last week it was fun to see the company some call <a href=\"https://x.com/WordPress/status/2032291317871468554\">parasitic WP Engine acquire WPackagist</a>. So a popular way to use WordPress with Composer, previously maintained by an <a href=\"https://outlandish.com/\">awesome co-op agency in London</a>, was now in the clutches of a company using <a href=\"https://ma.tt/2025/10/greenwashing/\">its capital advantage to try to openwash its alleged bad behavior</a>, probably in a <a href=\"https://ma.tt/2026/03/selling-your-company/\">process that wasn&#8217;t ideal for the sellers</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Four days later, an awesome independent organization <a href=\"https://roots.io\">roots.io</a> released <a href=\"https://wp-packages.org\">WP Composer (renamed to WP Packages</a>, in OpenClaw fashion) with 17x faster cold resolves than WPackagist. <a href=\"https://wp-packages.org/wp-packages-vs-wpackagist\">Check out their comparison page</a>.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-151706\" height=\"648\" src=\"https://i0.wp.com/ma.tt/files/2026/03/composer-compare.png?resize=604%2C648&#038;quality=80&#038;ssl=1\" width=\"604\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">It&#8217;s beautiful to see how resilient and nimble the antibodies in the WordPress community are. Major hat tip to <a href=\"https://benword.com\">Ben Word</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In another type of <span style=\"margin: 0px; padding: 0px;\">antibody, Sid Sijbrandi, whom I <a href=\"https://ma.tt/2026/01/cancer-founder-mode/\" target=\"_blank\">previously talked about going into founder mode on his cancer</a>, gave <a href=\"https://sytse.com/cancer/\" target=\"_blank\">an incredible presentation</a> at the Open AI Forum abo</span>ut how he ran a bunch of N-of-1 experiments and therapies to cure his terminal osteosarcoma. He&#8217;s <a href=\"https://osteosarc.com/\">also open-sourced 25TB of his data for cancer research</a>. Incredible!</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you want to see the future of health care, <a href=\"https://forum.openai.com/public/videos/event-replay-from-terminal-to-turnaround-how-gitlabs-co-founder-leveraged-chatgpt-in-his-cancer-fight-2026-03-18\">give Sid&#8217;s presentation a watch</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 28 Mar 2026 22:12:33 +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:15:\"Matt: Stockfish\";s:7:\"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=151702\";s:7:\"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/03/stockfish/\";s: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:839:\"<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Nobody is arguing that <a href=\"https://stockfishchess.org/\" rel=\"noreferrer noopener\" target=\"_blank\">Stockfish</a> is conscious, but Stockfish would kick Claude’s ass at chess.</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">Kevin Lincoln in <a href=\"https://www.bloomberg.com/news/articles/2026-03-27/ai-changed-chess-grandmasters-now-win-with-unpredictable-moves?accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzb3VyY2UiOiJTdWJzY3JpYmVyR2lmdGVkQXJ0aWNsZSIsImlhdCI6MTc3NDY4MDEzNSwiZXhwIjoxNzc1Mjg0OTM1LCJhcnRpY2xlSWQiOiJUQ0pTVzdLSVAzSkwwMCIsImJjb25uZWN0SWQiOiIwNEFGQkMxQkYyMTA0NUVEODg3MzQxQkQwQzIyNzRBMCJ9.nIWazrd0HBbGwk_nzijL8lTm8uyCPXr1F7molURiExg\">AI Perfected Chess. Humans Made It Unpredictable Again</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 28 Mar 2026 20:57:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:67:\"Gary: Claudaborative Editing 0.2: now with 500% more collaboration!\";s:7:\"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:25:\"https://pento.net/?p=5697\";s:7:\"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://pento.net/2026/03/28/claudaborative-editing-0-2-now-with-500-more-collaboration/\";s: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:5416:\"<p class=\"wp-block-paragraph\">A week ago, I put together <a href=\"https://pento.net/2026/03/20/introducing-claudaborative-editing/\">a quick tech demo</a>, showing how an MCP server could be created for Claude Code that hooked directly into Gutenberg&#8217;s Collaborative Editing feature, allowing it to act as a digital collaborator on a post. The demo focused primarily on text generation, but that&#8217;s not really the benefit that I see coming with this kind of tool. Anyone can generate text, then copy/paste it into the editor. The real power comes from directly hooking into the entire post creation and editing process.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What&#8217;s New?</h2>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img alt=\"A screenshot of the /review tool running on this post, prior to publication.\" class=\"wp-image-5711\" height=\"607\" src=\"https://pento.net/wp-content/uploads/2026/03/review-notes-1024x607.png\" width=\"1024\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"A screenshot of what Claude was doing behind the scenes when it was generating the review notes.\" class=\"wp-image-5714\" height=\"564\" src=\"https://pento.net/wp-content/uploads/2026/03/review-processing-1024x564.png\" width=\"1024\" /></figure>\n</figure>\n\n\n\n<p class=\"wp-block-paragraph\">Since last week&#8217;s release, I&#8217;ve added a host of editing and review tools:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>/edit {tell the LLM how you want this post adjusted}</code><br />Automatically make simple (or even not so simple!) edits on your post, giving your writing a little extra polish.</li>\n\n\n\n<li><code>/proofread</code><br />Find and automatically fix simple spelling, grammatical, and punctuation issues.</li>\n\n\n\n<li><code>/review</code><br />Read the post, and leave notes (using Gutenberg&#8217;s Notes feature!) about suggested improvements to your post. This doesn&#8217;t touch your post content, leaving you to make use of the suggestions as you see fit.</li>\n\n\n\n<li><code>/respond-to-notes</code><br />If you&#8217;re happy with the notes left in the review, you can also have it automatically apply them, too!</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">On top of that, I&#8217;ve also added an experimental <code>/translate</code> tool, to automatically translate a post into a different language. LLM translation quality varies significantly, though Claude is regularly considered to be quite good. It&#8217;s worth remembering that, like any LLM, the output is only as good as its input. If you&#8217;re translating to a language that it didn&#8217;t have much training data on, it&#8217;ll do a lot worse.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Behind The Scenes</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The MCP server now does a much better job of making use of the REST API, too: it now handles all block types (and does a pretty good job of guessing how to use blocks provided by plugins!). It can upload media, and it can handle all the post metadata, like categories, tags, excerpt, etc.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Getting It Running</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Inspired by the recently released <a href=\"https://make.wordpress.org/meta/2026/03/20/plugin-directory-mcp-server/\">WordPress.org MCP server</a>, the install process got a refresh, too. If you&#8217;re running WordPress 7.0, you won&#8217;t even need to copy/paste the application password to connect to your site: just click the connect button in your browser, and your site will send credentials back to the installer! And if you&#8217;d prefer to avoid the magic, there&#8217;s still a <code>--manual</code> option to let you set it up the old-fashioned way.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-2 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img alt=\"A screenshot of the initial installation of the claudaborative-editing MCP server, prompting the user to enter a site to connect to.\" class=\"wp-image-5700\" height=\"372\" src=\"https://pento.net/wp-content/uploads/2026/03/connect-1024x372.png\" width=\"1024\" /><figcaption class=\"wp-element-caption\">Connect</figcaption></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"The authorisation screen of the site that the MCP server is connecting to.\" class=\"wp-image-5702\" height=\"577\" src=\"https://pento.net/wp-content/uploads/2026/03/approve-1024x577.png\" width=\"1024\" /><figcaption class=\"wp-element-caption\">Authorise</figcaption></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"After authorisation, this screenshot shows the continu\" class=\"wp-image-5701\" height=\"667\" src=\"https://pento.net/wp-content/uploads/2026/03/install-1024x667.png\" width=\"1024\" /><figcaption class=\"wp-element-caption\">Install</figcaption></figure>\n</figure>\n\n\n\n<h2 class=\"wp-block-heading\">What&#8217;s Next?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">This release shows how easy it is for an LLM to talk to your WordPress site. What about the other way? If you&#8217;re working on a post, you don&#8217;t want to have to switch to a terminal to get spell checking done, so how can we provide this kind of functionality directly from the block editor? Let&#8217;s experiment and find out!</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, 28 Mar 2026 06:35: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:4:\"Gary\";s: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:112:\"Gutenberg Times: WordPress 7.0, Playground MCP, Gutenberg 22.8, PHP-only Blocks and more — Weekend Edition 362\";s:7:\"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=44834\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:132:\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth-playground-mcp-gutenberg-22-8-php-only-blocks-and-more-weekend-edition-362/\";s: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:33769:\"<p class=\"wp-block-paragraph\">Hi,</p>\n\n\n\n<p class=\"wp-block-paragraph\">In less than two weeks, WordPress 7.0 is scheduled to be released. Are you ready? Or are you someone I used to be who waits two to three weeks to see what quirks early adopters find and if they warrant an early point release? Be that as it may, waiting only delays the inevitable, though, sooner or later you get to benefit from the new features and quality of life improvements to the Admin, Editor and Blocks. </p>\n\n\n\n<p class=\"wp-block-paragraph\">The first version of the <a href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/\"><strong>WordPress 7.0 Source of Truth</strong></a> has been published. It&#8217;s again a mammoth post of 4500 words, including 21 images and ten videos. I hope you enjoy the list of all the big and small feature and updates. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Next week, I will be on my way to Mumbai. The next weekend edition will arrive in your inbox after WordCamp Asia, on April 17th, 2026. </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<p class=\"wp-block-paragraph\">PS: Should you be in Mumbai, grab a coffee of lunch spot <a href=\"https://calendly.com/pauli-haack/wcasia\">from my public calendar</a>, I&#8217;d love to meet you! </p>\n\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">WordPress 7.0 </h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"Highlight grid WordPress 7.0\" class=\"wp-image-44936\" height=\"375\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/03/7-0_highlight-grid-2026-03-26.png?resize=652%2C375&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>WordPress 7.0 </strong>Release candidate 1 <a href=\"https://make.wordpress.org/core/2026/03/19/wordpress-7-0-release-candidate-1-delayed/\">was moved to this week</a>. The <a href=\"https://wordpress.org/news/2026/03/wordpress-7-0-release-candidate-2/\">WordPress 7.0 RC2</a> was still on schedule for Thursday, though. Meanwhile, more Dev Notes were published.</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\"><a href=\"https://make.wordpress.org/core/2026/03/16/pattern-overrides-in-wp-7-0-support-for-custom-blocks/\"><strong>Pattern Overrides in WP 7.0</strong></a> is your heads-up to act before the release lands. WordPress 7.0 lifts the old restriction — Pattern Overrides now work with any block attribute that supports Block Bindings, not just a hardcoded Core block list. You opt in via the <code>block_bindings_supported_attributes</code> filter, and the post walks you through edge cases for static blocks where a <code>render_callback</code> may still be needed.</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\"><a href=\"https://make.wordpress.org/core/2026/03/15/pattern-editing-in-wordpress-7-0/\"><strong>Pattern Editing in WordPress 7.0</strong></a> explains that ContentOnly mode for unsynced patterns is now the default, meaning block structure and style controls are hidden from editors by default. Block authors need to audit <code>\"role\": \"content\"</code> attributes in <code>block.json</code>, theme authors should test their patterns, and plugin developers should verify UI components still render correctly under the new, more broadly applied editing modes.</p>\n\n\n\n<p class=\"wp-block-paragraph\"></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\"><a href=\"https://make.wordpress.org/core/2026/03/15/block-visibility-in-wordpress-7-0/\"><strong>Block Visibility in WordPress 7.0</strong></a> dev note is relevant if your theme or plugin touches block markup server-side. The new <code>viewport</code> key inside <code>blockVisibility</code> metadata lets users show or hide blocks per device — mobile, tablet, desktop — via CSS, not DOM removal. If your code assumes <code>blockVisibility</code> is always a boolean, you&#8217;ll need to update it to handle an object too. No changes are needed if your blocks don&#8217;t interact with markup server-side.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Anne McCarthy</strong> walks through <a href=\"https://www.youtube.com/watch?v=0Yq7aVoJIOk\">one of WordPress 7.0&#8217;s most-requested features</a>: viewport-based block visibility. You&#8217;ll see exactly how showing or hiding any block by screen size works in practice — no extra plugins or CSS workarounds needed — and why it is relevant for responsive design. If you&#8217;ve been waiting for a native way to tailor content for mobile, tablet, and desktop separately, this is your preview before the April 9th release.</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-4-3 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">The <strong><a href=\"https://make.wordpress.org/core/2026/03/15/dimensions-support-enhancements-in-wordpress-7-0/\">Dimensions Support Enhancements in WordPress 7.0</a> </strong>comprise width and height as first-class block supports. Block builders and theme designer opt in with a single line in <code>block.json</code>, set defaults in <code>theme.json</code>, and the sidebar UI comes for free. Themes can also define named <code>dimensionSizes</code> presets, giving users a consistent palette rather than free-form inputs. If your block has custom width/height attributes today, this is a good moment to consider migrating.</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\">A long-requested feature finally lands in WordPress 7.0. The dev note on <strong><a href=\"https://make.wordpress.org/core/2026/03/15/custom-css-for-individual-block-instances-in-wordpress-7-0/\">Custom CSS for Individual Block Instances</a> </strong>hold all the details. The new <code>customCSS</code> block support — enabled by default for all blocks — adds a Custom CSS field in the Advanced panel of the block inspector, scoped automatically to that instance via a generated class. Block authors whose blocks wrap raw or opaque content should explicitly opt out via <code>block.json</code>. If your <code>render_callback</code> is in play, make sure your block&#8217;s outermost element is a standard HTML tag.</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\">A typography feature requested since 2021 finally arrives in WordPress 7.0, the dev note on <strong><a href=\"https://make.wordpress.org/core/2026/03/15/new-block-support-text-indent-textindent/\">the new <code>textIndent</code> block support</a> </strong>has all the details for developers working on blocks or themes. Opt in with a single line in <code>block.json</code>, and a Line Indent control appears automatically in the Typography panel. Theme authors get <code>theme.json</code> configuration too, including a thoughtful <code>subsequent</code> vs <code>all</code> toggle that respects both LTR and RTL typographic conventions. No breaking changes — purely additive./</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\">WordPress 7.0 ships a new<strong> <a href=\"https://make.wordpress.org/core/2026/03/18/introducing-the-connectors-api-in-wordpress-7-0/\">Connectors API</a> </strong>— and if you build AI-adjacent plugins, this dev note belongs on your reading list. The new framework standardizes how WordPress registers and manages connections to external services — starting with AI providers — giving you a consistent admin UI, API key management, and auto-discovery via the WP AI Client. Three providers ship out of the box: Anthropic, Google, and OpenAI. The <code>wp_connectors_init</code> action is your hook for registering additional connectors or overriding existing metadata.</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>Felix Arntz </strong>details<strong> <a href=\"https://make.wordpress.org/core/2026/03/24/introducing-the-ai-client-in-wordpress-7-0/\">the new AI Client landing in WordPress 7.0</a></strong> — a provider-agnostic PHP API that lets your plugin send prompts for text, images, speech, or video without touching credentials or provider logic. You chain methods on <code>wp_ai_client_prompt()</code>, declare model preferences, and WordPress routes to whatever the site owner has configured. Three official provider plugins cover Anthropic, Google, and OpenAI. Client-side JS exists but remains admin-only for now.</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>Jorge Costa</strong> details the <a href=\"https://make.wordpress.org/core/2026/03/24/client-side-abilities-api-in-wordpress-7-0/\"><strong>client-side Abilities API arriving in WordPress 7.0</strong></a>, the JavaScript counterpart to the PHP Abilities API introduced in 6.9. Two new packages handle it: <code>@wordpress/abilities</code> for pure state management and <code>@wordpress/core-abilities</code> for the WordPress integration layer that auto-fetches server-registered abilities via REST. You can register abilities with input/output schemas, permission callbacks, and annotations — laying the groundwork for browser agents and WebMCP integration.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"gutenberg-22-8\">Gutenberg 22.8</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Gutenberg 22.8 release lead <strong>Dean Sas</strong> highlighted in his post <a href=\"https://make.wordpress.org/core/2026/03/25/whats-new-in-gutenberg-22-8-25-march/\"><strong>What’s new in Gutenberg 22.8? (25 March)</strong></a>  the following features: </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2026/03/25/whats-new-in-gutenberg-22-8-25-march/#real-time-collaboration-improvements\">Real-time Collaboration improvements</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/03/25/whats-new-in-gutenberg-22-8-25-march/#button-pseudo-state-styling-in-global-styles\">Button pseudo-state styling in Global Styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/03/25/whats-new-in-gutenberg-22-8-25-march/#site-logo-icon-in-the-design-panel\">Site Logo &amp; Icon in the Design panel</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/03/25/whats-new-in-gutenberg-22-8-25-march/#connectors-extensibility\">Connectors extensibility</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/03/25/whats-new-in-gutenberg-22-8-25-march/#other-notable-highlights\">Other Notable Highlights</a></li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">The real-time collaboration improvements and the Connectors extensibility will make it into the WordPress 7.0 release.</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 a blast chatting with <strong>Beth Soderberg </strong>from <a href=\"https://bethink.studio/\">Bethink Studio</a> on the recording of Gutenberg changelog 129. We dove into some cool stuff like using AI, WordPress 7.0, and Gutenberg 22.8. It was such a fun convo, and we even touched on that little mental block some users might hit when they see the fresh new look of the wp-admin screens and try to wrap their heads around the change. The episode will drop into your favorite podcast app over the weekend. The 130th episode will be recorded after I return from WordCamp Asia.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-45032\" height=\"185\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/03/Screenshot-2026-03-28-at-12.00.17.png?resize=652%2C185&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\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-128-gutenberg-22-7-version-and-dev-notes-for-7-0/\">Gutenberg Changelog #128 – Gutenberg 22.7 Version and Dev Notes for 7.0</a> with special guest Maggie Cabrera </p>\n\n\n\n<figure class=\"wp-block-image size-full is-style-no-vertical-margin\"><img alt=\"Recording Gutenberg Changelog 128 with Maggie Cabrera and Birgit Pauli-Haack \" class=\"wp-image-44836\" height=\"185\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/03/Screenshot-2026-03-13-at-17.41.45-1.png?resize=652%2C185&#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<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>Courtney Robertson</strong> at GoDaddy breaks down <a href=\"https://www.godaddy.com/resources/news/wordpress-7-0-real-time-collaboration-arrives-in-core\"><strong>what WordPress 7.0 brings when it ships April 9 at WordCamp Asia</strong></a>. Your editor finally gets real-time multi-user collaboration powered by Yjs, alongside visual block-level revisions, a Breadcrumbs block, Icon block, and customizable navigation overlays. Developers gain a provider-agnostic WP AI Client with a Connectors UI, PHP-only block registration, and Interactivity API improvements. The minimum PHP requirement bumps to 7.4 — worth flagging for clients on older hosting now.</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\">A little over a month ago, <strong>Johanne Courtright</strong>, founder of Groundworx, launched<strong> <a href=\"https://www.reddit.com/r/WordPressBlocks/comments/1rb20y1/welcome_to_rwordpressblocks/\">r/WordPressBlocks</a></strong>, a dedicated Reddit community for developers and builders working with the block editor. A longtime block developer and free plugin author, Courtright created the space because scattered conversations about custom blocks, theme.json, full site editing, and Gutenberg&#8217;s direction deserved a proper home. All skill levels welcome — come share tips, tools, wins, and frustrations.</p>\n\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\">If you&#8217;re finding it a drag to edit <code>theme.json</code>, check out <strong>Sérgio Santos</strong>&#8216;s creation, <a href=\"https://marketplace.visualstudio.com/items?itemName=s3rgiosan.vscode-wp-theme-json-editor\"><strong>WP Theme JSON Editor</strong></a>. It&#8217;s a VS Code and Cursor extension that makes dealing with JSON way easier with its cool visual interface. You can easily tweak colors, typography, spacing, and block settings using the official WordPress JSON Schema. Plus, it’s got handy features like CSS variable autocomplete, CodeMirror 6 syntax highlighting, drag-and-drop for palettes and font sizes, and real-time validation, and you even get to play with some experimental WP core properties. I’m not sure if it’s really easier than writing JSON from scratch, but hey, that’s just a personal choice, right?</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-45040\" height=\"356\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/03/Screenshot-2026-03-28-at-13.19.14.png?resize=652%2C356&#038;ssl=1\" width=\"652\" /></figure>\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\">You can now <a href=\"https://wordpress.com/blog/2026/03/16/how-to-build-a-wordpress-theme-with-telex/\"><strong>generate a block theme with Telex</strong></a>, Automattic&#8217;s experimental AI theme builder. You describe your site, hit &#8220;Enhance Prompt&#8221; to let Telex flesh out the design brief, optionally upload a reference image, then pick from four generated variations. From there you build out additional page templates, refine typography and colors conversationally, and download a ready-to-install ZIP containing your templates, styles, and theme.json — no PHP or CSS knowledge required.</p>\n\n\n<div class=\"ng-block-1efe2aa27a223cc8 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-b5e576985357480b 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 2026&#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-13d1635c8b200f65 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>Troy Chaplin</strong> launched <a href=\"https://veilsoffate.com/\">Veils of Fate</a>, a choose-your-own-adventure game built in WordPress using the Interactivity API, post types, and taxonomies. Spanning 3 acts, 18 quests, and 112 scenes, the story was co-written with Claude AI. If you love interactive storytelling, this one&#8217;s for you. Nano banana handled the pixel art, Miles created the theme, and Kinsta provides the hosting. A family-inspired project: Troy&#8217;s kids are avid readers and his wife is a librarian.</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>WordPress Studio</strong> is a free, open-source local development tool powered by WordPress Playground that has been around for two years now. The team has now published <a href=\"https://www.npmjs.com/package/wp-studio\">wp-studio</a> the CLI installer you can use to spin up local sites instantly — no Docker, NGINX, Apache, or MySQL required — sync them with WordPress.com or Pressable, share live preview links with clients, and tap into a built-in AI assistant that runs WP-CLI commands natively. It&#8217;s only early access to there might be dragons. <img alt=\"🐉\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f409.png\" style=\"height: 1em;\" /> Also available in WordPress Studio you can use phpMyAdmin to access the database and use it dark mode. </p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-45047\" height=\"491\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/03/Screenshot-2026-03-28-at-13.53.48.png?resize=652%2C491&#038;ssl=1\" width=\"652\" /></figure>\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>Carlo Daniele</strong> at Kinsta walks you through <strong><a href=\"https://kinsta.com/blog/php-only-gutenberg-blocks/\">building PHP-only Gutenberg blocks</a>,</strong> a feature introduced in Gutenberg 21.8 that lets you register blocks entirely in PHP—no React, Node.js, or build steps required. Using the new <code>auto_register</code> support flag, your attributes automatically generate inspector controls in the editor. You&#8217;ll build a pricing card block and learn how to wrap legacy shortcodes as proper blocks, finally giving your PHP-side clients and developers a gentler path into the block editor. It will also come to a WordPress instance near you soon with WordPress 7.0. </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\">If you&#8217;d rather watch a video for education, <strong>Brian Coords</strong> demonstrates <a href=\"https://www.youtube.com/watch?v=HS0pUU-cSpM\"><strong>how PHP-only block registration in WordPress 7.0 </strong>removes the build-tool barrier entirely</a> You&#8217;ll see a Hello World block built with custom fields, a WooCommerce integration using the Store API, and how to handle frontend JavaScript when backend JS has limitations. The real payoff comes when you combine PHP-only blocks with Claude Code skills, letting you generate blocks through conversation rather than scaffolding. The code is on <a href=\"https://github.com/bacoords/example-p...\">GitHub</a>.</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=\"playground-news\">Playground News</h2>\n\n\n\n<p class=\"wp-block-paragraph\">On this episode of <em>The WP Minute+</em>, <strong>Eric Karkovack</strong> sits down with WordPress contributors <strong>Alex Kirk</strong> and <strong>Brandon Payton</strong> to <strong><a href=\"https://www.youtube.com/watch?v=lbsFmIqP0_g\">explore my.WordPress.net</a>,</strong> a browser-based WordPress sandbox built around privacy, portability, and AI. Think personal CRM, private family blogging, chat-to-blog workflows, and an AI playground — all running in your browser without a server. The demo shows how plugins become app-like modules, how messaging apps like Beeper can feed content in, and how AI can modify plugins live. Your data stays yours, portable across devices.</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=\"ai-in-wordpress\">AI in WordPress</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Fellyph Cintra</strong> announces that <a href=\"https://make.wordpress.org/playground/2026/03/17/connect-ai-coding-agents-to-wordpress-playground-with-mcp/\">AI coding agents can now connect directly to <strong>WordPress Playground via MCP</strong></a>, thanks to the new <code>@wp-playground/mcp</code> package built by <strong>Berislav Grgicak</strong>. One command wires up Claude Code or Gemini CLI to a browser-based Playground instance over WebSocket, letting your agent read and write files, execute PHP, manage sites, and navigate pages — all locally, without touching WordPress admin. Think plugin testing, live database debugging, and theme scaffolding driven entirely by conversation.</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>Gary Pendergast</strong>, long-time core committer, introduces <a href=\"https://pento.net/2026/03/20/introducing-claudaborative-editing/\">claudaborative-editing</a>, an MCP server — written by Claude Code, fittingly — that lets Claude edit WordPress posts live alongside you in Gutenberg. Built on WordPress 7.0&#8217;s Yjs-powered collaborative editing protocol, your changes and Claude&#8217;s sync in real time with no conflicts. A single <code>npx claudaborative-editing setup</code> gets you started. Claude appears in the collaborators list, edits at the block level, and even streams text character by character as it types. </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>Darin Koster</strong>, developer at Fueled, walks you through <a href=\"https://darinkotter.com/ai-featured-images/\"><strong>how AI featured image generation works</strong></a> inside the <a href=\"https://wordpress.org/plugins/ai/\">WordPress AI plugin</a>. One button click kicks off a five-step chain built on the Abilities API: gather post context, generate an image prompt via an LLM, generate the image, optionally create alt text, then import and set it as the featured image — all in about 30 seconds. The post doubles as a practical demonstration of how WordPress&#8217;s AI building blocks can be composed into real editor workflows.</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\">In <strong><a href=\"https://wpbuilds.com/2026/03/26/462-debating-ais-impact-with-jamie-marsland-content-creativity-slop-and-the-future-of-wordpress/\">this lively WP Builds debate on AI, content, and the future of WordPress</a>,</strong> <strong>Jamie Marsland </strong>— Automattic&#8217;s head of YouTube and prolific WordPress educator — squares off against a gleefully curmudgeonly <strong>Nathan Wrigley</strong>. Marsland champions the new Claude–WordPress.com integration, which gives AI full context of your site for content, branding, and SEO. <strong>Wrigley</strong> pushes back on authenticity, AI slop, and eroding community skills. You&#8217;ll find both sides genuinely persuasive — and probably switch teams more than once.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https://wpbuilds.com/2026/03/26/462-debating-ais-impact-with-jamie-marsland-content-creativity-slop-and-the-future-of-wordpress/\"><img alt=\"\" class=\"wp-image-45035\" height=\"342\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/03/WPBuilds462-Nathan-Wrigley-Jamie-Marsland.webp?resize=652%2C342&#038;ssl=1\" width=\"652\" /></a></figure>\n\n\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\">As an example of how AI might change how you use WordPress, <strong>Jamie Marsland</strong> demonstrates that <a href=\"https://www.youtube.com/watch?v=Jywvzfo_w8c\"><strong>You can now Vibe Code with WordPress.com</strong></a>. on YouTube. He shows what&#8217;s possible once Claude is connected to your site via MCP, from building full landing pages and wiring up contact forms with a single prompt to running promotions across multiple sites, generating downloadable SEO reports, auditing for accessibility, and tracking activity with visual dashboards. Think of it as your WordPress workflow, but driven entirely by conversation.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You can learn more about the official WordPress.com connector for Claude in below blog post and video. </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://wordpress.com/blog/2026/03/20/ai-agent-manage-content/\"><strong>Your AI agent can now create, edit, and manage content on WordPress.com</strong></a> by Jonathan Bossenger </li>\n\n\n\n<li><br /><strong><a href=\"https://www.youtube.com/watch?v=ujFGAuUc-x4\">It’s Official: You Can Now Use Claude with WordPress!</a></strong> also with Jamie Marsland</li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n<div class=\"ng-block-a40e7294ef8aaefb 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-8314883e2a4cef47 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-67dfbe5fc44ccd6f 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-5d18d8dc75ff191b 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-05b5a7f80d28dac8 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-ad8ef3d251c7ea7d 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:\"Sat, 28 Mar 2026 03:40: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: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:46:\"Gutenberg Times: WordPress 7.0 Source of Truth\";s:7:\"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=44884\";s:7:\"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://gutenbergtimes.com/wordpress-7-0-source-of-truth/\";s: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:81175:\"<p class=\"wp-block-paragraph\" id=\"welcome-to-the-source-of-truth-for-wordpress-6-9\">Welcome to the Source of Truth for WordPress 7.0!</p>\n\n\n\n<p class=\"wp-block-paragraph\">Before you dive headfirst into all the big and small changes and pick your favorites, make sure to read these preliminary thoughts about this post and how to use it. If you have questions, leave a comment or email me at <a href=\"mailto:pauli@gutenbergtimes.com\">pauli@gutenbergtimes.com</a>. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Huge Thank You to all collaborators on this post: Anne McCarthy, Sarah Norris, Ella van Durpe, Maggie Cabrera, Ben Dwyer, Jonathan Bossenger, Justin Tadlock, Dave Smith, Courtney Robertson and a lot more. It&#8217;s takes a village&#8230;</p>\n\n\n\n<div class=\"wp-block-group has-primary-color has-text-color has-link-color has-small-font-size wp-elements-a8bb9ec1783f5f0c5623981a664fedce is-content-justification-left is-nowrap is-layout-flex wp-container-core-group-is-layout-fbe4aca3 wp-block-group-is-layout-flex\" style=\"text-decoration: none;\">\n<p class=\"wp-block-paragraph\">Estimated reading time</p>\n\n\n<div class=\"wp-block-post-time-to-read\">21–31 minutes</div>\n\n\n<p class=\"wp-block-paragraph\">at </p>\n\n\n<div class=\"wp-block-post-time-to-read\">4,858 words</div></div>\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\"><strong>Table of Contents</strong></p>\n\n\n\n<nav class=\"wp-block-table-of-contents\"><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#changelog\">Changelog</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#important-note-guidelines\">Important note/guidelines</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#overview\">Overview </a><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#important-links\">Important links:</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#assets\">Assets </a></li></ol></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#tags\">Tags</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#priority-items-for-wordpress-7-0\">Priority items for WordPress 7.0 </a><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#real-time-collaboration-rtc-enterprise-site-admin\">Real-Time Collaboration (RTC) [enterprise][site admin]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#navigation-overlays-and-more-theme-builder-plugin-author-site-admin\">Navigation Overlays and more [theme builder][plugin author] [site admin]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#treating-patterns-like-a-single-block-all\">Treating patterns like a single block [all]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#ai-in-wordpress-enterprise-developers-site-admin\">AI in WordPress [enterprise][developers][site admin]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#visual-revisions-all\">Visual Revisions [all]</a></li></ol></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#new-blocks\">New Blocks</a><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#breadcrumbs-block-all\">Breadcrumbs Block [all]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#icon-block-all\">Icon Block [all]</a></li></ol></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#block-editor-enhancements\">Block Editor enhancements</a><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#custom-css-for-individual-blocks-enduser-site-admin-theme-builder\">Custom CSS for Individual Blocks [enduser][site admin] [theme builder]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#control-viewport-based-block-visibility-all\">Control viewport-based block visibility [all]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#anchor-support-for-dynamic-blocks-developer-plugin-author\">Anchor support for dynamic blocks [developer][plugin author]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#paste-color-values-in-the-color-picker-end-user-theme-builder-site-admin\">Paste color values in the color picker [end user][theme builder] [site admin]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#dimension-support-for-width-and-height-theme-builder-site-admin\">Dimension support for width and height [theme builder][site admin]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#email-notifications-for-notes-all\">Email notifications for Notes [all]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#block-attributions-groups-in-the-sidebar-all\">Block Attributions Groups in the sidebar [all]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#link-control-validation-end-user-site-admin\">Link Control validation [end user] [site admin]</a></li></ol></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#improved-blocks-and-block-handling\">Improved Blocks and Block handling</a><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#pseudo-styles-for-button-blocks-theme-builder-site-admin\">Pseudo Styles for Button Blocks [theme builder][site admin] </a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#extra-divs-removed-from-blocks-in-the-editor-theme-builder-developer-site-admin\">Extra divs removed from blocks in the editor [theme builder][developer][site admin] </a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#universal-text-alignment-all\">Universal Text Alignment [all]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#cover-block-video-embeds-site-admin-end-user\">Cover Block Video Embeds [site admin][end user]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#gallery-block\">Gallery Block </a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#responsive-grid-block-site-admin-end-user-theme-builder\">Responsive Grid Block [site admin][end user][theme builder]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#heading-block-variations-site-admin-end-user\">Heading block variations [site admin][end user]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#html-block-enhancement-site-admin-themebuilder-end-user\">HTML Block Enhancement [site admin] [themebuilder] [end user] </a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#image-block-inline-editing-and-controls-site-admin-end-user\">Image block inline editing and controls [site admin][end user]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#math-block-improvements-end-users-site-admin\">Math Block Improvements [end users][site admin]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#paragraph-all\">Paragraph [all]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#query-loop-enhancements-all\">Query Loop Enhancements [all]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#verse-block-renamed-to-poetry-all\">Verse Block, renamed to Poetry [all]</a></li></ol></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#admin-workflow-updates\">Admin / Workflow updates </a><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#manage-fonts-for-all-themes-in-a-dedicated-page-site-admin-theme-builder-enterprise\">Manage fonts for all themes in a dedicated page [site admin][theme builder] [enterprise]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#command-palette-in-adminbar-all\">Command Palette in Adminbar [all]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#view-transitions-all\">View Transitions  [all]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#improved-screens-across-wp-admin-all\">Improved screens across WP-Admin  [all]</a></li></ol></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#developer-goodies-developer-enterprise\">Developer Goodies [developer][enterprise]</a><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#php-only-block-registration\">PHP-only block registration</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#pattern-overrides-for-custom-blocks\">Pattern Overrides for custom blocks</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#dataviews-data-form-components-and-fields-api\">DataViews, Data Form components and Fields API </a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/#ui-primitives-and-components\">UI Primitives and Components</a></li></ol></li></ol></nav>\n</div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"changelog\">Changelog</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Any changes are cataloged here as the release goes on.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>March 27, 2026:</strong> First edition </li>\n\n\n\n<li><strong>March 30, 2026:</strong>\n<ul class=\"wp-block-list\">\n<li>Fixes for clarity and grammar.</li>\n\n\n\n<li>Changed feature image of the post.</li>\n\n\n\n<li>RTC: Added Introduce filters for the polling intervals (<a href=\"https://github.com/WordPress/gutenberg/pull/76518\">76518</a>)</li>\n</ul>\n</li>\n\n\n\n<li><strong>April 1, 2026:</strong> \n<ul class=\"wp-block-list\">\n<li>Added information from  <a href=\"https://make.wordpress.org/core/2026/03/31/extending-the-7-0-cycle/\">Extending the 7.0 Cycle</a> by release lead Matias Ventura</li>\n\n\n\n<li>Changed release date to TBD</li>\n\n\n\n<li>Updated <a href=\"https://gutenbergtimes.com/feed/#real-time-collaboration-rtc-enterprise-site-admin\" id=\"#real-time-collaboration-rtc-enterprise-site-admin\" type=\"internal\">Real-Time Collaboration</a> section with additional information.</li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"important-note-guidelines\">Important note/guidelines</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Try not to just copy and paste what&#8217;s in this post since it&#8217;s going to be shared with plenty of folks. Use this as inspiration for your own stuff and to get the best info about this release. If you do copy and paste, just remember that others might do the same, and it could lead to some awkward moments with duplicate content floating around online.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Each item has been tagged using best guesses with different high-level labels so that you can more readily see at a glance who is likely to be most impacted.</li>\n\n\n\n<li>Each item has a high-level description, visuals (if relevant), and key resources if you would like to learn more.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"overview\">Overview </h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"Highlight grid WordPress 7.0 (still a work in progress) \" class=\"wp-image-44936\" height=\"375\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/03/7-0_highlight-grid-2026-03-26.png?resize=652%2C375&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Note: As always, what’s shared here is being actively pursued but doesn’t necessarily mean each will make it into the final release of WordPress 7.0.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 introduces several new features and performance enhancements.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Key new features include:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Real-time collaboration: </strong>multiple users can now work on the same post. </li>\n\n\n\n<li><strong>Navigation overlays:</strong> Customizable mobile menus for more flexible styling. </li>\n\n\n\n<li><strong>Content focused pattern editing:</strong> Pattern editing now prioritizes the content editing experience with more available options when needed.</li>\n\n\n\n<li><strong>Visual revisions: </strong>A new revisions screen inside the block editor gives a visual preview of the changes with an easy-to-understand color-coded system.</li>\n\n\n\n<li><strong>AI Foundation in WordPress: </strong>User can connect their site to an AI agent of choice to use the AI experiments plugin.  Plugin developers can use the Connectors API to register connections to external services.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">Furthermore, WordPress 7.0, entails:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Two new blocks: </strong>the Icon block and the Breadcrumbs block.</li>\n\n\n\n<li><strong>Viewport-based block show/hide:</strong> Block visibility extended to customize display according to screen-sizes. </li>\n\n\n\n<li><strong>Gallery lightbox navigation:</strong> improved browsing through images placed in a gallery.</li>\n\n\n\n<li><strong>Font management</strong> for all themes: The screen to upload and manage fonts is now available in the <strong>Appearance</strong> menu for classic and block themes.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">Many more quality of life changes for workflow and design tools made it into this release. You&#8217;ll find the complete list below. </p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://make.wordpress.org/core/7-0/\">WordPress 7.0</a> is <s>set to be released on April 9, 2026 at <a href=\"https://asia.wordcamp.org/2026/wordpress-7-0-release-on-contributor-day/\">Contributor Day of WordCamp Asia</a>.</s> <br />The new release date is soon to be announced. (see <a href=\"https://make.wordpress.org/core/2026/03/31/extending-the-7-0-cycle/\">Ventura&#8217;s announcement</a>) </p>\n\n\n\n<p class=\"wp-block-paragraph\">Of note, this release consists of features from the Gutenberg plugin version 22.0 &#8211; 22.6. Here are the release posts of those plugin releases: <a href=\"https://make.wordpress.org/core/2025/11/05/whats-new-in-gutenberg-22-0-05-november/\">22.0</a> | <a href=\"https://make.wordpress.org/core/2025/11/20/whats-new-in-gutenberg-22-1-18-november-2025/\"> 22.1</a> | <a href=\"https://make.wordpress.org/core/2025/12/03/whats-new-in-gutenberg-22-2-dec3/\"> 22.2</a> | <a href=\"https://make.wordpress.org/core/2025/12/17/gutenberg-22-3-december-17/\">22.3</a> | <a href=\"https://make.wordpress.org/core/2026/01/22/whats-new-in-gutenberg-22-4-20-january/\">22.4</a> | <a href=\"https://make.wordpress.org/core/2026/02/04/whats-new-in-gutenberg-22-5-04-february/\">22.5</a> | <a href=\"https://make.wordpress.org/core/2026/02/25/whats-new-in-gutenberg-22-6-25-february/\">22.6</a>. Later Gutenberg releases contain bug fixes, backported to WordPress 7.0. release branches.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"important-links\">Important links:</h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2025/12/11/planning-for-7-0/\">Planning for 7.0</a> + <a href=\"https://make.wordpress.org/core/2025/12/11/planning-for-7-0/#comment-48392\">update on Beta 1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/7-0/\">WordPress 7.0 Development Cycle</a></li>\n\n\n\n<li><strong>What’s new for developers:</strong> <a href=\"https://developer.wordpress.org/news/2025/12/whats-new-for-developers-december-2025/\">December</a>, <a href=\"https://developer.wordpress.org/news/2026/01/whats-new-for-developers-january-2026/\">January</a>, <a href=\"https://developer.wordpress.org/news/2026/02/whats-new-for-developers-february-2026/\">February</a>, <a href=\"https://developer.wordpress.org/news/2026/03/whats-new-for-developers-march-2026/\">March</a></li>\n\n\n\n<li>7.0 Field Guide</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"assets\">Assets </h3>\n\n\n\n<p class=\"wp-block-paragraph\">In this <a href=\"https://drive.google.com/drive/u/0/folders/1s3vR7M60U7RcjKCu9Y5GHUo-SDA50jSP\">Google Drive folder</a> you can view all assets in this document.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"tags\">Tags</h2>\n\n\n\n<p class=\"wp-block-paragraph\">To make this document easier to navigate based on specific audiences, the following tags are used liberally: </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>[end user]</strong>: end user focus. </li>\n\n\n\n<li><strong>[theme builder]</strong>: block or classic theme author. </li>\n\n\n\n<li><strong>[plugin author]</strong>: plugin author, whether block or otherwise.</li>\n\n\n\n<li><strong>[developer]</strong>: catch-all term for more technical folks. </li>\n\n\n\n<li><strong>[site admin]</strong>: this includes a “builder” type. </li>\n\n\n\n<li><strong>[enterprise]</strong>: specific items that would be of interest to or particularly impact enterprise-level folks</li>\n\n\n\n<li><strong>[all]</strong>: broad impact to every kind of WordPress user. </li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">How can you use these? Use your browser&#8217;s <strong>Find</strong> capability and search for the string including the brackets. Then use the arrows to navigate through the post from one result to the next. </p>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\">Short video on how to use the tags to navigate the post. \n<p class=\"wp-block-paragraph\"></p>\n\n\n\n		<figure class=\"wp-block-jetpack-videopress jetpack-videopress-player\">\n			<div class=\"jetpack-videopress-player__wrapper\"> </div>\n			\n			\n		</figure>\n		</details>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"priority-items-for-wordpress-7-0\">Priority items for WordPress 7.0 </h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"real-time-collaboration-rtc-enterprise-site-admin\">Real-Time Collaboration (RTC) <sup>[enterprise][site admin]</sup></h3>\n\n\n\n<p class=\"wp-block-paragraph\">Multiple users can now work on the same page at the same time, seeing each other&#8217;s changes as they happen. No more &#8220;someone else is editing this&#8221; warnings. Whether you&#8217;re co-writing a post, reviewing a layout, or making last-minute edits before publishing, everyone stays in sync without leaving the editor. </p>\n\n\n\n<p class=\"wp-block-paragraph\">It represents the biggest step toward achieving full collaborative editing, not only for newsrooms and big publishing houses.  It also simplifies working on a site editing for agencies and their clients as well as designers and writers working together on a post. </p>\n\n\n\n<p class=\"wp-block-paragraph\">A presence indicator in the editor header shows who’s currently editing. Under the hood, title, content, and excerpt now sync via <code>Y.text</code> for more granular conflict resolution, and numerous reliability fixes address disconnection handling, revision restores, and performance metrics. (<a href=\"https://github.com/WordPress/gutenberg/pull/75286\">75286</a>, <a href=\"https://github.com/WordPress/gutenberg/pull/75398\">75398</a>, <a href=\"https://github.com/WordPress/gutenberg/pull/75065\">75065</a>, <a href=\"https://github.com/WordPress/gutenberg/pull/75448\">75448</a>, <a href=\"https://github.com/WordPress/gutenberg/pull/75595\">75595</a>).</p>\n\n\n\n<p class=\"wp-block-paragraph\">You can enable the feature via <strong>Settings &gt; Writing</strong>. Check the box next to <strong>Enable early access to real-time collaboration</strong>, in the <strong>Collaboration</strong> section. </p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-44905\" height=\"221\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/03/Collaboration-Settings-Writing.png?resize=652%2C221&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The infrastructure implementation uses HTTP polling for universal compatibility,  CRDT (Conflict-free Replicated Data Type) update data is stored persistently in post_meta on a special internal <code>wp_sync_storage</code> post type (one per &#8220;room&#8221;/document). </p>\n\n\n\n<p class=\"wp-block-paragraph\">The sync provider architecture is designed so that the storage and transport layer can be swapped out. Updates are batched and periodically compacted. WordPress code initially limits simultaneous collaborators to two to protect hosts. (<a href=\"https://core.trac.wordpress.org/ticket/64622\">64622</a>). </p>\n\n\n\n<p class=\"wp-block-paragraph\">Hosting companies have the option to add a different provider. There will be a <code>wp-config</code> constant that can be used to change the defaults. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Introduces JavaScript filters to allow third party developers to slow down or speed up polling via the RTC client. (<a href=\"https://github.com/WordPress/gutenberg/pull/76518\">76518</a>).</p>\n\n\n\n<p class=\"wp-block-paragraph\">For more details, check out the Dev Note <a href=\"https://make.wordpress.org/core/2026/03/10/real-time-collaboration-in-the-block-editor/\"><strong>Real-Time Collaboration in the Block Editor</strong></a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Update:</strong> </p>\n\n\n\n<p class=\"wp-block-paragraph\">Since October, WordPress VIP beta participants — spanning newsrooms, research institutions, and enterprise publishers — tested the real-time collaboration against live editorial workflows, reporting back what worked, what broke, and what they couldn’t live without. Their voices didn’t just validate the feature — they shaped 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\">Matias Ventura explains why <a href=\"https://make.wordpress.org/core/2026/03/31/extending-the-7-0-cycle/\">the WordPress 7.0 cycle is being extended by a few weeks</a>: the real-time collaboration feature needs more time to nail its data architecture. After Matt Mullenweg, co-founder of WordPress, expressed a preference to revisit the proposed custom table for syncing presence and content changes, the team is refining the design before committing. </p>\n\n\n\n<p class=\"wp-block-paragraph\">The proposal for custom table to keep a record of the changes to a post/page from each browser window, was discussed in the trac ticket (<a href=\"https://core.trac.wordpress.org/ticket/64696\">64696</a>) </p>\n\n\n\n<p class=\"wp-block-paragraph\">Plugin developers relying on metaboxes will want to take note — collaborative editing is disabled when metaboxes are present, making this cycle your window to migrate.</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-44945\" height=\"397\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/03/Real-time-collaboration.png?resize=652%2C397&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"navigation-overlays-and-more-theme-builder-plugin-author-site-admin\">Navigation Overlays and more <sup>[theme builder][plugin author] [site admin]</sup></h3>\n\n\n\n<p class=\"wp-block-paragraph\">Navigation blocks now have customizable overlays and give user full control over mobile hamburger menus. A prominent <strong>Create overlay</strong> button in the side bar guides you through the setup, providing a selection of patterns to achieve various designs for your overlay. WordPress 7.0 comes with multiple built-in patterns including centered navigation, accent backgrounds, and black backgrounds. New blocks default to &#8220;always&#8221; showing overlays. The Navigation block sidebar section also shows a preview of the selected overlay template parts. You can also access the list of Navigation Overlays via <strong>Appearance &gt; Editor &gt; Patterns &gt; Template Parts.</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>On GitHub you&#8217;ll find a list of all the <a href=\"https://github.com/WordPress/gutenberg/issues?q=state%3Aclosed%20label%3A%22%5BFeature%5D%20Navigation%20Overlays%22%20label%3A%22%5BType%5D%20Enhancement%22\">Navigation Overlay enhancements</a>. </li>\n\n\n\n<li>The dev note <a href=\"https://make.wordpress.org/core/2026/03/04/customisable-navigation-overlays-in-wordpress-7-0/\">Customizable Navigation Overlays in WordPress 7.0</a> has everything you need to know.</li>\n</ul>\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\"><div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full is-resized\" id=\"block-697b3ef0-955a-4413-82a1-bf3bb5f25f68\"><img alt=\"\" class=\"wp-image-45002\" height=\"607\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/03/Create-Overlay.png?resize=589%2C607&#038;ssl=1\" style=\"width: 541px; height: auto;\" width=\"589\" /></figure>\n</div></div></div>\n\n\n\n<p class=\"wp-block-paragraph\">To make it easier for users to create custom overlays for their mobile navigation, four new patterns are now available for the navigation overlay template parts:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/74847\">Overlay with black background</a> </li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/74849\">Overlay with accent background</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/74862\">Centered navigation with info</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/74861\">Centered navigation</a></li>\n</ul>\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<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-45003\" height=\"979\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/03/navigation-overlay-patterns.png?resize=652%2C979&#038;ssl=1\" width=\"652\" /></figure>\n</div></div>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Submenus: Always visible option</strong>: Users can now add navigation blocks to their overlays and toggle if they’d like to have the submenus always visible or not. (<a href=\"https://github.com/WordPress/gutenberg/pull/74653\">74653</a>)</li>\n\n\n\n<li><strong>Page Creation in Navigation</strong>: Create pages directly from the Navigation block with helpful Snackbar notices and improved parent page search using relevance matching <a href=\"https://github.com/WordPress/gutenberg/pull/72627\">(72627</a>, <a href=\"https://github.com/WordPress/gutenberg/pull/73836\">73836</a>).</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"treating-patterns-like-a-single-block-all\">Treating patterns like a single block <sup>[all]</sup></h3>\n\n\n\n<p class=\"wp-block-paragraph\">Get ready for a smoother, more intuitive experience when using patterns in WordPress 7.0.  It’s becoming much easier to customize your site&#8217;s design sections with a simplified editing workflow and an improved content-focused mode. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Users naturally stay in the safe lane without accidentally breaking designs. Agencies can hand off a site knowing clients can&#8217;t wreck the layout by default — they&#8217;d have to deliberately choose to go deeper.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>What&#8217;s New for Patterns:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Quick Content Edits:</strong> When you select a pattern, instead of seeing a list of individual blocks, you&#8217;ll see a clean, expanded inspector panel. This panel exposes all the editable text and image fields directly, organized for easy access. </li>\n\n\n\n<li><strong>Content-Only Focus:</strong> Patterns will now default to a <strong>Content-Only</strong> editing mode. This simplifies the experience by letting you quickly fill in the content without seeing all the underlying design tools.</li>\n\n\n\n<li><strong>Full Customization (If You Need It):</strong> If you <em>do</em> need to change the structure or design of a pattern, you can simply &#8220;detach&#8221; it. This gives you full access to all the individual blocks, just like before. Use the <strong>Edit Pattern</strong> button from the sidebar.</li>\n\n\n\n<li><strong>A Unified Experience:</strong> This new approach makes patterns feel like single, smart design objects with easy-to-update attributes, whether you&#8217;re using a pattern, a design section, or a partially synced pattern.</li>\n</ul>\n\n\n\n		<figure class=\"wp-block-jetpack-videopress jetpack-videopress-player\">\n			<div class=\"jetpack-videopress-player__wrapper\"> </div>\n			\n			\n		</figure>\n		\n\n\n<p class=\"wp-block-paragraph\">Head over to the dev note <a href=\"https://make.wordpress.org/core/?p=122085&amp;preview=1&amp;_ppp=5a7fd37ffc\">Pattern Editing in WordPress 7.0</a> for the full picture. </p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"ai-in-wordpress-enterprise-developers-site-admin\">AI in WordPress <sup>[enterprise][developers][site admin]</sup></h3>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 ships with a WP AI client API and a built-in Connectors screen — a centralized hub for managing all kinds of external service integrations, not just AI providers. Connect to OpenAI, Claude, or Gemini and WordPress automatically installs the right plugin and prompts you for your API key. Developers get a consistent framework to build on—enabling features like content generation, block building, and theme creation without reinventing the plumbing every time. </p>\n\n\n\n<p class=\"wp-block-paragraph\">The new Connectors page also sports a shout-out to the <a href=\"https://wordpress.org/plugins/ai/\">AI Experiments plugin</a> if users want to see AI features, like title, excerpt, or alt-text generation, in action.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-44916\" height=\"415\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/03/Connectors-Page-WordPress-7-0.png?resize=652%2C415&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">But the real value of this Connectors API is broader: any plugin that needs to connect to an outside service via API keys or other credentials can tap into this standardized connection management system. Users get one place to maintain all their integrations. And plugin developer a standardized way to tap into the plumbing.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Read the dev note <a href=\"https://make.wordpress.org/core/2026/03/18/introducing-the-connectors-api-in-wordpress-7-0/\"><strong>Introducing the Connectors API in WordPress 7.0</strong></a> for all the salient details. </li>\n\n\n\n<li>The Core AI team also published a <a href=\"https://make.wordpress.org/ai/2026/03/25/call-for-testing-community-ai-connector-plugins/\"><strong>Call for Testing: Community AI Connector Plugins</strong></a>.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"visual-revisions-all\">Visual Revisions<sup> [all]</sup></h3>\n\n\n\n<p class=\"wp-block-paragraph\">How revisions work for the block editor was completely reimagined. The visual Revisions screen keeps you in the editor the entire time, activating a subtle revision mode right where you work, eliminating the need to jump to a separate screen. A timeline slider in the header allows you to browse through different versions, seeing content updates in real-time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The system highlights visual differences, showing added and removed text, formatting changes, and outlining modified blocks instead of raw code. For long documents, a mini-map along the scrollbar indicates where changes exist, letting you jump directly to them, and the sidebar remains useful with a summary of the changes for the current revision. To simplify reverting, the &#8220;Update&#8221; or &#8220;Publish&#8221; button is replaced by a &#8220;Restore&#8221; button when you are browsing the history (<a href=\"https://github.com/WordPress/gutenberg/issues/74742\">74742</a>).</p>\n\n\n\n<p class=\"wp-block-paragraph\">Yellow marks a changed section/block, in red you’ll find deletions and green are additions compared to the early version. </p>\n\n\n\n		<figure class=\"wp-block-jetpack-videopress jetpack-videopress-player\">\n			<div class=\"jetpack-videopress-player__wrapper\"> </div>\n			\n			\n		</figure>\n		\n\n\n<p class=\"wp-block-paragraph\"><strong>Wes Theron</strong> has a short video on <a href=\"https://www.youtube.com/watch?v=PWN3d2KUNKk\">How to restore previous versions of a page or post in WordPress</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Anne McCarthy also gives a great walk through the screens on Youtube:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"new-blocks\">New Blocks</h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"breadcrumbs-block-all\">Breadcrumbs Block <sup>[all]</sup></h3>\n\n\n\n<p class=\"wp-block-paragraph\">The new native Breadcrumbs block in WordPress 7.0 provides dynamic navigational trails for the Site Editor. It automatically generates paths from the homepage to the current page, adapting to context.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The block handles hierarchical pages (e.g., &#8220;Home / Services / Web Design / Portfolio&#8221;) and includes taxonomy for blog posts (e.g., &#8220;Home / Technology / Your Post Title&#8221;). Beyond simple pages, it correctly constructs paths for archive pages (category, tag, author, date), search results, and 404 errors. For Custom Post Types, it includes the post type archive in the trail.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"Breadcrumbs block displaying post categories WordPress 7.0\" class=\"wp-image-44940\" height=\"227\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/03/Breadcrumbs-flore-flowers.png?resize=652%2C227&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The block offers alignment options (left, center, right, wide/full), as well as other block design options. Additional settings are available for showing the last item as text or a link and consistent homepage handling (<a href=\"https://github.com/WordPress/gutenberg/issues/72649\">72649</a>).</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-44951\" height=\"898\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/03/gb-22-2-breadcrumb.png?resize=652%2C898&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The dev note <a href=\"https://make.wordpress.org/core/2026/03/04/breadcrumb-block-filters/\">Breadcrumb block filters</a> has the details. </p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"icon-block-all\">Icon Block <sup>[all]</sup></h3>\n\n\n\n<p class=\"wp-block-paragraph\">The new Icon block empowers users to add decorative icons from a curated collection to their content. It utilizes a new server-side SVG Icon Registration API, ensuring icon registry updates propagate without block validation errors. </p>\n\n\n\n<p class=\"wp-block-paragraph\">The initial release is limited as it doesn&#8217;t yet allow registering third-party icon collections. Extensibility for third-party icon registration is planned for future release in 7.1, following further development on the Icon registry API architecture. A REST endpoint at <code>/wp/v2/icons</code> supports searching and filtering. The initial set draws from the <code>wordpress/icons</code> package (<a href=\"https://github.com/WordPress/gutenberg/pull/71227\">71227</a>, <a href=\"https://github.com/WordPress/gutenberg/pull/72215\">72215</a>, <a href=\"https://github.com/WordPress/gutenberg/pull/75576\">75576</a>).</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"List of directions, illustrated with the icon block\" class=\"wp-image-44938\" height=\"192\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/03/icon-block.png?resize=652%2C192&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-editor-enhancements\">Block Editor enhancements</h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"custom-css-for-individual-blocks-enduser-site-admin-theme-builder\">Custom CSS for Individual Blocks <sup>[enduser][site admin] [theme builder]</sup></h3>\n\n\n\n<p class=\"wp-block-paragraph\">Previously, applying custom CSS to a block instance required adding a custom class name and then writing a rule in the Site Editor’s global Custom CSS. This two-step process was complex for most users and inaccessible to content editors without Site Editor access.</p>\n\n\n\n<p class=\"wp-block-paragraph\">A new custom CSS block support introduces a Custom CSS input to the <strong>Advanced</strong> panel within the block editor sidebar, conveniently placed next to the familiar &#8220;Additional CSS Class(es)&#8221; field. You only need to add the CSS declarations (no selectors!) If you do need to target nested elements, use the &amp; symbol (for example, &amp; a { color: red; }). This field is focused purely on styling and will reject any HTML input. The field is guarded by the <code>edit_css capability</code> to see and use this powerful new field. The editor automatically adds a has-custom-css class for styling consistency. <a href=\"https://github.com/WordPress/gutenberg/pull/73959\">#73959</a>, <a href=\"https://github.com/WordPress/gutenberg/pull/74969\">#74969</a>.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-44920\" height=\"412\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/03/Block-level-custom-CSS.png?resize=652%2C412&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Dive into the dev note <strong><a href=\"https://make.wordpress.org/core/2026/03/15/custom-css-for-individual-block-instances-in-wordpress-7-0/\">Custom CSS for Individual Block Instances</a></strong> for the complete rundown.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"control-viewport-based-block-visibility-all\">Control viewport-based block visibility <sup>[all]</sup></h3>\n\n\n\n<p class=\"wp-block-paragraph\">When you&#8217;re editing a post or page, you can now choose to show or hide any block depending on the visitor&#8217;s screen size. Select a block, click <strong>Show</strong> in the toolbar, and pick which devices — desktop, tablet, or mobile — should display it. You can also hide a block from the document entirely through the same modal. </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<figure class=\"wp-block-image size-full is-resized wp-duotone-unset-1\"><img alt=\"\" class=\"wp-image-44980\" height=\"282\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/03/note-on-visibility.png?resize=573%2C282&#038;ssl=1\" style=\"width: 519px; height: auto;\" width=\"573\" /></figure>\n</div></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-44944\" height=\"429\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/03/Block-visiblity.png?resize=652%2C429&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">For the nitty-gritty, see the dev note <a href=\"https://make.wordpress.org/core/2026/03/15/block-visibility-in-wordpress-7-0/\">Block Visibility in WordPress 7.0</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Anne McCarthy walks you through the feature: </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>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"anchor-support-for-dynamic-blocks-developer-plugin-author\">Anchor support for dynamic blocks <sup>[developer][plugin author]</sup></h3>\n\n\n\n<p class=\"wp-block-paragraph\">Dynamic blocks now support Anchor (id attribute) functionality. The anchor reference is consistently stored within the block comment delimiter, enabling dynamic rendering on the front end. (<a href=\"https://github.com/WordPress/gutenberg/pull/74183\">74183</a>)</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"paste-color-values-in-the-color-picker-end-user-theme-builder-site-admin\">Paste color values in the color picker <sup>[end user][theme builder] [site admin]</sup></h3>\n\n\n\n<p class=\"wp-block-paragraph\">Color pickers throughout the block styles sidebar, now offer support for pasting complete color values. You can now copy/paste the brand colors from a design document or website into the color picker box and don&#8217;t have to go through the process of selecting the right color and hue<a href=\"https://github.com/WordPress/gutenberg/pull/73166\"> (73166</a>).</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"dimension-support-for-width-and-height-theme-builder-site-admin\">Dimension support for width and height <sup>[theme builder][site admin]</sup></h3>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 expands the Dimensions block supports system with three significant improvements: <strong>width</strong> and <strong>height</strong> are now available as standard block supports under dimensions, and themes can now define <strong>dimension size presets</strong> to give users a consistent set of size options across their site.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The Dev Note <a href=\"https://make.wordpress.org/core/2026/03/15/dimensions-support-enhancements-in-wordpress-7-0/\">Dimensions Support Enhancements in WordPress 7.0</a> has the details for block.development and theme builders.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"email-notifications-for-notes-all\">Email notifications for Notes <sup>[all]</sup></h3>\n\n\n\n<p class=\"wp-block-paragraph\">Collaborators can now get notified when someone leaves a note on their content. No more checking back constantly (<a href=\"https://github.com/WordPress/gutenberg/pull/73645\">73645</a>).</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"block-attributions-groups-in-the-sidebar-all\">Block Attributions Groups in the sidebar <sup>[all]</sup></h3>\n\n\n\n<p class=\"wp-block-paragraph\">The block editor sidebar is being reorganized to make controls easier to find. Block settings will be grouped into four clear sections: </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Content</strong> (text, images, captions), </li>\n\n\n\n<li><strong>List</strong> (reordering and nesting for blocks like Lists and Social Icons), </li>\n\n\n\n<li><strong>Settings</strong> (block-specific options), and </li>\n\n\n\n<li><strong>Styles</strong> (typography, colors, spacing). </li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">This means you won&#8217;t need to hunt through toolbars or scattered panels — everything will live in a predictable place in the sidebar. Connected data sources will also appear directly next to the attributes they affect, so you can see at a glance what&#8217;s linked and where. It also means that for the transition a reordering of the sidebar and controls to be in different place than before. For instance. For an image block that includes the “Alt” text setting is now to be found in the content tab rather than the settings tab.  (<a href=\"https://github.com/WordPress/gutenberg/issues/73845\">73845</a>)</p>\n\n\n\n<p class=\"wp-block-paragraph\">Here&#8217;s an example of the implementation for Patterns:</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-44943\" height=\"399\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/03/Pattern-Attributes-in-Sidebar.png?resize=652%2C399&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"link-control-validation-end-user-site-admin\">Link Control validation <sup>[end user] [site admin]</sup></h3>\n\n\n\n<p class=\"wp-block-paragraph\">The Link Control component in Gutenberg now validates the URLs, you enter helping to avoid broken links (<a href=\"https://github.com/WordPress/gutenberg/pull/73486\">73486</a>).</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<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-44950\" height=\"181\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/03/Link-control-variation.png?resize=531%2C181&#038;ssl=1\" width=\"531\" /></figure>\n</div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"improved-blocks-and-block-handling\">Improved Blocks and Block handling</h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"pseudo-styles-for-button-blocks-theme-builder-site-admin\">Pseudo Styles for Button Blocks <sup>[theme builder][site admin] </sup></h3>\n\n\n\n<p class=\"wp-block-paragraph\">Theme designers and developers can now style button states (hover, focus, active, and focus visible) directly within the theme.json, making it much easier to keep all design controls centralized and consistent. This reduces the reliance on custom CSS for things like button hover states (<a href=\"https://github.com/WordPress/gutenberg/pull/71418\">71418</a>). </p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers\"><span>JSON</span><span class=\"code-block-pro-copy-button\" style=\"color: #575279; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">{\n    \"styles\": {\n        \"blocks\":{\n                \"core/button\":{\n                    \"color\":{\n                        \"background\":\"blue\"\n                    },\n                    \":hover\":{\n                        \"color\":{\n                        \"background\":\"green\"\n                        }\n                    },\n                    \":focus\":{\n                        \"color\":{\n                        \"background\":\"purple\"\n                        }\n                    }\n                }\n            }\n    }\n}\n</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki rose-pine-dawn\" style=\"background-color: #faf4ed;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">    </span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">styles</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">        </span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">blocks</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">                </span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">core/button</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">                    </span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">color</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">                        </span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">background</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #EA9D34;\">&quot;blue&quot;</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">                    </span><span style=\"color: #797593;\">},</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">                    </span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">:hover</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">                        </span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">color</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">                        </span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">background</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #EA9D34;\">&quot;green&quot;</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">                        </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">                    </span><span style=\"color: #797593;\">},</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">                    </span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">:focus</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">                        </span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">color</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">                        </span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">background</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #EA9D34;\">&quot;purple&quot;</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">                        </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">                    </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">                </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">            </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">    </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">More details are available in the Dev Note: <a href=\"https://make.wordpress.org/core/2026/03/09/pseudo-element-support-for-blocks-and-their-variations-in-theme-json/\">Pseudo-element support for blocks and their variations in theme.json</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"extra-divs-removed-from-blocks-in-the-editor-theme-builder-developer-site-admin\">Extra divs removed from blocks in the editor <sup>[theme builder][developer][site admin] </sup></h3>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 introduced a new <code>HtmlRenderer</code> component, which renders HTML content as React elements with optional wrapper props. For theme authors, this means that several blocks will no longer have an extra wrapping <code>&lt;div&gt;</code> in the editor, allowing for consistent styling with the front end (<a href=\"https://github.com/WordPress/gutenberg/pull/74228\">74228</a>).</p>\n\n\n\n<p class=\"wp-block-paragraph\">Blocks that have been fixed are:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/74255\">Archives</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/74271\">Calendar</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/74277\">Latest Comments</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/74272\">RSS</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/74228\">Tag Cloud</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"universal-text-alignment-all\">Universal Text Alignment <sup>[all]</sup></h3>\n\n\n\n<p class=\"wp-block-paragraph\">Nearly all text blocks now support the standardized text-align block support system, including Paragraph, Button, Comment blocks, Heading, and Verse. Plus, text justify alignment is now available. See <a href=\"https://github.com/WordPress/gutenberg/issues/60763\">tracking issue</a> to follow along on the progress (<a href=\"https://github.com/WordPress/gutenberg/issues/60763\">60763</a>).</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"cover-block-video-embeds-site-admin-end-user\">Cover Block Video Embeds <sup>[site admin][end user]</sup></h3>\n\n\n\n<p class=\"wp-block-paragraph\">For the Cover block this release comes with the ability to use embedded videos (like YouTube or Vimeo) as background videos in the Cover block, rather than being restricted to locally uploaded files. Offloading video to 3rd-party services helps reduce hosting and bandwidth costs. Also, the focal pointer is now available for fixed background. (<a href=\"https://github.com/WordPress/gutenberg/pull/73023\">#73023</a>, <a href=\"https://github.com/WordPress/gutenberg/pull/74600\">#74600</a>).</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-44953\" height=\"416\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/03/gb-22-2-embed-1.png?resize=652%2C416&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"gallery-block\">Gallery Block </h3>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"lightbox-navigation-site-admin-end-user\">Lightbox navigation <sup>[site admin][end user]</sup></h4>\n\n\n\n<p class=\"wp-block-paragraph\">The Gallery block’s “Enlarge on click” lightbox now lets you navigate between images. When you click a gallery image, back/next buttons appear so you can browse through the rest of the gallery without closing the lightbox. Keyboard navigation (arrow keys) and screen reader announcements are fully supported. It also works with swiping on mobile, however the swiping isn’t yet visual/animated.  (<a href=\"https://github.com/WordPress/gutenberg/pull/62906\">62906</a>) and lightbox items still miss captions.</p>\n\n\n\n		<figure class=\"wp-block-jetpack-videopress jetpack-videopress-player\">\n			<div class=\"jetpack-videopress-player__wrapper\"> </div>\n			\n			\n		</figure>\n		\n\n\n<h4 class=\"wp-block-heading\" id=\"content-tab-in-sidebar-site-admin-end-user\">Content Tab in sidebar <sup>[site admin][end user]</sup></h4>\n\n\n\n<p class=\"wp-block-paragraph\">For fast access to Alt text box the sidebar of the Gallery block shows a new content tab in the sidebar. </p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-44958\" height=\"340\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/03/Gallery-content-sidebar-edited.png?resize=652%2C340&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"responsive-grid-block-site-admin-end-user-theme-builder\">Responsive Grid Block <sup>[site admin][end user][theme builder]</sup></h3>\n\n\n\n<p class=\"wp-block-paragraph\">The Grid block is now responsive even when you set a column count. Previously, you had to choose between setting a minimum column width (responsive, Auto mode) or a fixed column count (Manual mode)—a binary toggle that confused many users. Now you can set both: when you do, the column count becomes a <em>maximum</em>, and the grid scales down responsively based on your minimum column width. </p>\n\n\n\n<p class=\"wp-block-paragraph\">You can set neither, either, or both—the block handles all combinations gracefully. The confusing Auto/Manual toggle is gone entirely, replaced by clearer &#8220;minimum width&#8221; and &#8220;columns&#8221; labels with a plain-language description explaining the relationship between the two controls.. (<a href=\"https://github.com/WordPress/gutenberg/pull/73662\">73662</a>)</p>\n\n\n\n		<figure class=\"wp-block-jetpack-videopress jetpack-videopress-player\">\n			<div class=\"jetpack-videopress-player__wrapper\"> </div>\n			\n			\n		</figure>\n		\n\n\n<h3 class=\"wp-block-heading\" id=\"heading-block-variations-site-admin-end-user\">Heading block variations <sup>[site admin][end user]</sup></h3>\n\n\n\n<p class=\"wp-block-paragraph\">Each heading level (H1-H6) is now registered as a block variation on the Heading block. These do not appear in the inserter, but the change does add icons to the block’s sidebar for transforming it between variations (<a href=\"https://github.com/WordPress/gutenberg/pull/73823\">73823</a>).</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-44963\" height=\"334\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/03/Heading-handling.png?resize=652%2C334&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"html-block-enhancement-site-admin-themebuilder-end-user\">HTML Block Enhancement <sup>[site admin] [themebuilder] [end user]</sup> </h3>\n\n\n\n<p class=\"wp-block-paragraph\">The HTML block was redesigned to work now as a modal-based editor featuring separate tabs for HTML, CSS, and JavaScript. Admin can now use it for more powerful customizations, when HTML JS and CSS work on a single block. (<a href=\"https://github.com/WordPress/gutenberg/pull/73108\">73108</a>).  </p>\n\n\n\n		<figure class=\"wp-block-jetpack-videopress jetpack-videopress-player\">\n			<div class=\"jetpack-videopress-player__wrapper\"> </div>\n			\n			\n		</figure>\n		\n\n\n<h3 class=\"wp-block-heading\" id=\"image-block-inline-editing-and-controls-site-admin-end-user\">Image block inline editing and controls <sup>[site admin][end user]</sup></h3>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 comes with a revamp of the image editing feature in the editor. It’s now easier to crop, rotate or zoom in on a particular image corner. (<a href=\"https://github.com/WordPress/gutenberg/pull/72414\">#72414</a>) (<a href=\"https://github.com/WordPress/gutenberg/pull/73277\">#73277</a>).</p>\n\n\n\n		<figure class=\"wp-block-jetpack-videopress jetpack-videopress-player\">\n			<div class=\"jetpack-videopress-player__wrapper\"> </div>\n			\n			\n		</figure>\n		\n\n\n<h4 class=\"wp-block-heading\" id=\"advanced-image-controlsimage-block-now-supports-the-focal-point-control-and-aspect-ratio-adjustments-for-wide-and-full-alignments-plus-reorganized-inspector-controls-with-a-dedicated-content-tab-73115-74519-74201\">Advanced Image Controls <sup>[site admin][end user]</sup></h4>\n\n\n\n<p class=\"wp-block-paragraph\" id=\"advanced-image-controlsimage-block-now-supports-the-focal-point-control-and-aspect-ratio-adjustments-for-wide-and-full-alignments-plus-reorganized-inspector-controls-with-a-dedicated-content-tab-73115-74519-74201\">Image block now supports the focal point control and aspect ratio adjustments for wide and full alignments, plus reorganized inspector controls with a dedicated content tab. <a href=\"https://github.com/WordPress/gutenberg/pull/73115\">#73115</a>, <a href=\"https://github.com/WordPress/gutenberg/pull/74519\">#74519</a>, <a href=\"https://github.com/WordPress/gutenberg/pull/74201\">#74201</a></p>\n\n\n\n		<figure class=\"wp-block-jetpack-videopress jetpack-videopress-player\">\n			\n			\n			\n		</figure>\n		\n\n\n<h3 class=\"wp-block-heading\" id=\"math-block-improvements-end-users-site-admin\">Math Block Improvements <sup>[end users][site admin]</sup></h3>\n\n\n\n<p class=\"wp-block-paragraph\">LaTeX input now uses a monospaced font, and style options are available for better mathematical expression editing (<a href=\"https://github.com/WordPress/gutenberg/pull/72557\">72557</a>, <a href=\"https://github.com/WordPress/gutenberg/pull/73544\">73544</a>).</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-44972\" height=\"425\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/03/Mathblock-updates-wp70.png?resize=652%2C425&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"paragraph-all\">Paragraph <sup>[all]</sup></h3>\n\n\n\n<p class=\"wp-block-paragraph\">A new typography tool has been added for specifying the line indent of paragraph blocks (<a href=\"https://github.com/WordPress/gutenberg/pull/73114\">73114</a>, <a href=\"https://github.com/WordPress/gutenberg/pull/74889\">74889</a>). Users and theme creators can specify line indentation rules for a single paragraph block and also at global styles / theme.json level for all paragraph blocks. For global styles and theme.json, it’s possible to choose whether all paragraphs or only subsequent paragraphs are indented, which accounts for different indentation standards around the world.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The dev note on <strong><a href=\"https://make.wordpress.org/core/2026/03/15/new-block-support-text-indent-textindent/\">the new <code>textIndent</code> block support</a> </strong>has all the details for developers working on blocks or themes.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-44985\" height=\"525\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/03/TextIndent-standard.png?resize=652%2C525&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The example code sets a default indent value of 1.5em globally for paragraphs:</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers\"><span>JSON</span><span class=\"code-block-pro-copy-button\" style=\"color: #575279; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">{\n  \"settings\": {\n    \"typography\": {\n      \"textIndent\": \"true\"\n    }\n  },\n  \"styles\": {\n    \"blocks\": {\n      \"core/paragraph\": {\n        \"typography\": {\n          \"textIndent\": \"1.5em\"\n        }\n      }\n    }\n  }\n}\n</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki rose-pine-dawn\" style=\"background-color: #faf4ed;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">  </span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">settings</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">    </span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">typography</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">      </span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">textIndent</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;true&quot;</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">    </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">  </span><span style=\"color: #797593;\">},</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">  </span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">styles</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">    </span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">blocks</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">      </span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">core/paragraph</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">        </span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">typography</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">          </span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">textIndent</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;1.5em&quot;</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">        </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">      </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">    </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">  </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">More details can be learned in the Dev Note: <a href=\"https://make.wordpress.org/core/?p=121744&amp;preview=1&amp;_ppp=b05f93cb55\">New Block Support: Text Indent (textIndent) </a></p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"columns-in-paragraph-blocks-all\">Columns in Paragraph blocks <sup>[all]</sup></h4>\n\n\n\n<p class=\"wp-block-paragraph\">Now that there is block support for typographical columns, the paragraph block can now handle text columns by default (<a href=\"https://github.com/WordPress/gutenberg/pull/74656\">74656</a>).</p>\n\n\n\n<p class=\"wp-block-paragraph\">On the front-end only, the Paragraph block now has a <code>.wp-block-paragraph</code> class. This change doesn’t affect global styles, which still use the <code>p</code> selector.(<a href=\"https://github.com/WordPress/gutenberg/pull/71207\">71207</a>)</p>\n\n\n\n		<figure class=\"wp-block-jetpack-videopress jetpack-videopress-player\">\n			<div class=\"jetpack-videopress-player__wrapper\"> </div>\n			\n			\n		</figure>\n		\n\n\n<h3 class=\"wp-block-heading\" id=\"query-loop-enhancements-all\">Query Loop Enhancements <sup>[all]</sup></h3>\n\n\n\n<p class=\"wp-block-paragraph\">Query loops now support excluding terms. When the block is locked it now hides design change and choose pattern options. <a href=\"https://github.com/WordPress/gutenberg/pull/73790\">#73790</a>, <a href=\"https://github.com/WordPress/gutenberg/pull/74160\">#74160</a></p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-44986\" height=\"527\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/03/Exclude-Terms-Query-block.png?resize=652%2C527&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"verse-block-renamed-to-poetry-all\">Verse Block, renamed to Poetry <sup>[all]</sup></h3>\n\n\n\n<p class=\"wp-block-paragraph\">The Verse Block has been renamed to Poetry block (<a href=\"https://github.com/WordPress/gutenberg/pull/74722\">74722</a>) Also it now utilizes <code>border-box</code> for its <code>box-sizing</code>, which guards against overflow issues and should make it easier to style without additional custom CSS.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"admin-workflow-updates\">Admin / Workflow updates </h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"manage-fonts-for-all-themes-in-a-dedicated-page-site-admin-theme-builder-enterprise\">Manage fonts for all themes in a dedicated page <sup>[site admin][theme builder] [enterprise]</sup></h3>\n\n\n\n<p class=\"wp-block-paragraph\">A dedicated Fonts page is now available under the Appearance menu for all themes. Until now, font management has lived deep inside Global Styles, requiring navigation through several panels to install or preview a font. This new standalone page lets block theme users browse, install, and manage their typography collection in one dedicated space. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Under the hood, this page is built on a new routing infrastructure for the Site Editor, designed to improve navigation and support new top-level pages in wp-admin. View transitions are now wired into this routing layer, providing early zoom/slide animations when navigating between pages (<a href=\"https://github.com/WordPress/gutenberg/pull/73630\">73630</a>, <a href=\"https://github.com/WordPress/gutenberg/pull/73876\">73876</a>, <a href=\"https://github.com/WordPress/gutenberg/pull/73586\">73586</a>).</p>\n\n\n\n<p class=\"wp-block-paragraph\">The Font Library and Global Styles also work with classic themes (<a href=\"https://github.com/WordPress/gutenberg/pull/73971\">#73971</a>,<a href=\"https://github.com/WordPress/gutenberg/pull/73876\"> #73876</a>). Like the Media Library, you can access the Font Library as a modal or through a dedicated admin section—regardless of your theme type.</p>\n\n\n\n<figure class=\"wp-block-image\"><img alt=\"\" src=\"blob:https://gutenbergtimes.com/e8865866-45a0-4807-94ac-02a8257ce1dd\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"command-palette-in-adminbar-all\">Command Palette in Adminbar <sup>[all]</sup></h3>\n\n\n\n<p class=\"wp-block-paragraph\">Instantly access all the tools you need with a single click using the <strong>new Command Palette shortcut in the Omnibar</strong>! In 7.0 Beta 5, logged-in editors will see a field with a ⌘K or Ctrl+K symbol in the upper admin bar that unfurls the command palette when clicked. The new command palette entry point streamlines navigation and customization, giving you full control from anywhere on your site – whether you’re editing, designing or just browsing plugins.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"view-transitions-all\">View Transitions  <sup>[all]</sup></h3>\n\n\n\n<p class=\"wp-block-paragraph\">View transitions have been integrated into the WordPress admin in 7.0, enabling smooth transitions between screens.  The implementation for the front end is slated for the next WordPress 7.1 (<a href=\"https://core.trac.wordpress.org/ticket/64470\">64470</a>) The result is a smoother page-to-page transitions using the CSS <a href=\"https://developer.mozilla.org/en-US/docs/Web/API/View_Transition_API\">View Transitions API </a>— no markup or JavaScript changes required, just a progressive enhancement you&#8217;ll notice immediately when navigating between admin screens.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"improved-screens-across-wp-admin-all\">Improved screens across WP-Admin  <sup>[all]</sup></h3>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 is getting a CSS-only &#8220;coat-of-paint&#8221; visual reskin of the wp-admin, bringing the classic admin screens closer to the visual language of the block and site editors — no markup changes, no JavaScript, no functional changes, and all existing CSS class names and admin color schemes preserved. (<a href=\"https://core.trac.wordpress.org/ticket/64308\">64308</a>)</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>New default color scheme: &#8220;Modern&#8221; replaces &#8220;Fresh&#8221; as the default admin color scheme (#<a href=\"https://core.trac.wordpress.org/ticket/64546\">64546</a>)</li>\n\n\n\n<li>Updated buttons and input fields: primary, secondary, and link buttons, plus text inputs, selects, checkboxes, and radio buttons, now align with the WordPress Design System (#<a href=\"https://core.trac.wordpress.org/ticket/64547\">64547</a>)</li>\n\n\n\n<li>Updated notices: info, warning, success, and error notices refreshed for clarity and consistency (#<a href=\"https://core.trac.wordpress.org/ticket/64548\">64548</a>), including on the login screen</li>\n\n\n\n<li>Updated cards and metaboxes: dashboard widgets and metaboxes get modernized styling (#<a href=\"https://core.trac.wordpress.org/ticket/64549\">64549</a>)</li>\n\n\n\n<li>New <code>wp-base-styles</code> stylesheet handle: consolidates admin color scheme CSS custom properties into a single reusable stylesheet, available across the admin and the block editor content iframe</li>\n\n\n\n<li>Login and registration screens: the WordPress logo updated from blue to gray to match the new design, and scheme styles now apply to login, install, database repair, and upgrade screens</li>\n</ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-44993\" height=\"459\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/03/Admin-new-coat-of-paint.png?resize=652%2C459&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"developer-goodies-developer-enterprise\">Developer Goodies <sup>[developer][enterprise]</sup></h2>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"client-side-abilities-api\">Client-side Abilities API </h4>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 ships a JavaScript counterpart to the server-side Abilities API introduced in 6.9. The <a href=\"https://make.wordpress.org/core/2026/03/24/client-side-abilities-api-in-wordpress-7-0/\">Client-Side Abilities API</a> arrives as two packages: <code>@wordpress/abilities</code> for pure state management usable in any project, and <code>@wordpress/core-abilities</code>, which auto-fetches server-registered abilities via the REST API. You can now register browser-only abilities — navigation, block insertion, and more — opening the door to browser agents, extensions, and WebMCP integrations directly in the client. </p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"wp-ai-client\">WP AI Client</h4>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 ships a built-in <strong><a href=\"https://make.wordpress.org/core/2026/03/24/introducing-the-ai-client-in-wordpress-7-0/\">AI Client</a>,</strong> that gives your plugin a single, provider-agnostic PHP entry point — <code>wp_ai_client_prompt()</code> — for text, image, speech, and video generation. You describe what you need; WordPress routes it to whichever AI provider the site owner has configured via Settings &gt; Connectors. Official provider plugins cover Anthropic, Google, and OpenAI. No credential handling, no provider lock-in, and graceful feature detection before any UI is shown.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"php-only-block-registration\">PHP-only block registration</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Developers can now create simple blocks using only PHP. This is meant for blocks that only need server-side rendering and aren’t meant to be highly interactive. When possible this feature also auto-generates sidebars for user input for suitable attributes and design tools. </p>\n\n\n\n<p class=\"wp-block-paragraph\">To do so, call <code>register_block_type</code> with the new <code>autoRegister</code> flag. A <code>render_callback</code> function must also be provided. (<a href=\"https://github.com/WordPress/gutenberg/issues/71792\">71792</a>)</p>\n\n\n\n<p class=\"wp-block-paragraph\">Dev note with all the details. <a href=\"https://make.wordpress.org/core/2026/03/03/php-only-block-registration/\">PHP-only block registration</a></p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"pattern-overrides-for-custom-blocks\">Pattern Overrides for custom blocks</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Since WordPress 6.5, <a href=\"https://developer.wordpress.org/news/2024/06/an-introduction-to-overrides-in-synced-patterns/\">Pattern Overrides</a> let you create synced patterns where the layout stays consistent but specific content can change per instance. The catch? Only four core blocks supported it: Heading, Paragraph, Button, and Image.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Not anymore. Any block attribute that supports Block Bindings now supports Pattern Overrides by default. Block authors can opt in through the server-side <a href=\"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-bindings/#extending-supported-attributes\"><code>block_bindings_supported_attributes</code></a> filter. This closes <a href=\"https://github.com/WordPress/gutenberg/issues/64870\">a long-requested enhancement</a> and opens up synced patterns to custom blocks (<a href=\"https://github.com/WordPress/gutenberg/pull/73889\">73889</a>).</p>\n\n\n\n		<figure class=\"wp-block-jetpack-videopress jetpack-videopress-player\">\n			<div class=\"jetpack-videopress-player__wrapper\"> </div>\n			\n			\n		</figure>\n		\n\n\n<h3 class=\"wp-block-heading\" id=\"dataviews-data-form-components-and-fields-api\">DataViews, Data Form components and Fields API </h3>\n\n\n\n<p class=\"wp-block-paragraph\">A substantial API update introduces new layouts, validation rules, grouping options, and picker improvements affecting plugins using <code>wordpress/dataviews</code>. The Dev Note has all the pertinent details: <a href=\"https://make.wordpress.org/core/2026/03/04/dataviews-dataform-et-al-in-wordpress-7-0/\">DataViews, DataForm, et al. in WordPress 7.0</a></p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"ui-primitives-and-components\">UI Primitives and Components</h3>\n\n\n\n<p class=\"wp-block-paragraph\">The WordPress UI package just got a significant update, adding multiple new components and tools to help developers create more polished and accessible interfaces for WordPress users. </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A new dropdown menu for creating <a href=\"https://github.com/WordPress/gutenberg/pull/74661\">standardized select controls</a>.</li>\n\n\n\n<li>A <a href=\"https://github.com/WordPress/gutenberg/pull/74625\">tooltip component</a> for displaying helpful hints when users hover over elements.</li>\n\n\n\n<li>The building blocks for <a href=\"https://github.com/WordPress/gutenberg/pull/74190\">creating form fields</a> with consistent styling and behavior.</li>\n\n\n\n<li>A component that hides content <a href=\"https://github.com/WordPress/gutenberg/pull/74189\">from visual display</a> while keeping it accessible to assistive technologies.</li>\n\n\n\n<li>A <a href=\"https://github.com/WordPress/gutenberg/pull/74415\">standardized button component</a> for creating consistent interactive elements.</li>\n\n\n\n<li>Building blocks for grouping <a href=\"https://github.com/WordPress/gutenberg/pull/74296\">related form controls</a> together (fieldsets).</li>\n\n\n\n<li>A component for <a href=\"https://github.com/WordPress/gutenberg/pull/74311\">displaying icons</a> consistently throughout your WordPress interface.</li>\n\n\n\n<li>A building block for creating consistent <a href=\"https://github.com/WordPress/gutenberg/pull/74313\">layouts around input fields</a> with standardized appearance and functionality.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">A list of <a href=\"https://make.wordpress.org/core/tag/dev-notes+7-0/\">all the dev notes can be reviewed from the Make Core blog</a> </p>\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, 27 Mar 2026 16:37:11 +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: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:66:\"Open Channels FM: Shaping Data Sovereignty and Internet Resilience\";s:7:\"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=2550900\";s:7:\"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/navigating-data-sovereignty-and-internet-resilience/\";s: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:388:\"In recent years, the concept of data sovereignty has become increasingly important. As more countries introduce or tighten regulations around where and how data must be stored and protected, companies serving the global internet community face a unique set of challenges. These regulatory requirements force hosting providers and infrastructure companies to think not just about [&#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, 27 Mar 2026 11: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: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: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:53:\"WordPress.org blog: WordPress 7.0 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20324\";s:7:\"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/03/wordpress-7-0-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8700:\"<p class=\"wp-block-paragraph\">The second Release Candidate (“RC2”) 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 RC2 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 RC2 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-RC2.zip\">RC2 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-RC2</code></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.  No setup required – just click and go! </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>April 9, 2026</strong>. The full <a href=\"https://make.wordpress.org/core/2026/02/12/wordpress-7-0-release-party-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 RC2?</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>What’s new in WordPress 7.0</strong>? Check out the <a href=\"https://wordpress.org/news/2026/02/wordpress-7-0-beta-1/\">Beta 1 announcement</a> and <a href=\"https://make.wordpress.org/core/tag/dev-notes+7-0/\">7.0 Developer Notes</a> for details and highlights. For technical information related to issues addressed since <a href=\"https://wordpress.org/news/2026/03/wordpress-7-0-release-candidate-1/\">RC1</a>, you can browse the following links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/7.0?since=2026-03-24&amp;until=2026-03-26\">GitHub commits</a> since March 24, 2026</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=03%2F24%2F2026..03%2F26%2F2026&amp;milestone=7.0&amp;group=component&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Closed Trac tickets</a> since March 24, 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 help the world’s most popular open source web platform, regardless of your technical expertise.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Get involved in testing</h2>\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. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Your help testing the WordPress 7.0 RC1 version is key to ensuring that the final release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important. 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. 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\">What else to test:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/test/2026/03/11/its-time-to-test-real-time-collaboration/\">Real Time Collaboration</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2026/02/27/call-for-testing-pattern-editing-and-content-only-interactivity-in-wordpress-7-0/\">Pattern Editing and content-only Interactivity</a></li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">If you encounter an 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>. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Curious about testing releases in general?  Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Test on your hosting platforms</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Web hosts provide vital infrastructure for supporting WordPress and its users. Testing on hosting systems helps inform the development process while ensuring that WordPress and hosting platforms are fully compatible, free of errors, optimized for the best possible user experience, and that updates roll out to customer sites without issue.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Want to test WordPress on your hosting system? <a href=\"https://make.wordpress.org/hosting/test-results-getting-started/\">Get started with configuring distributed hosting tests here</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p class=\"wp-block-paragraph\">For plugin and theme authors, your products play an integral role in extending the functionality and value of WordPress for all users.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Thanks for continuing to test your themes and plugins with the WordPress 7.0 beta releases. If you haven’t yet, make sure to conclude your testing and update the <em>&#8220;Tested up to”</em> version in your <a href=\"https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/\">plugin’s readme file</a> to <code>7.0</code>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you find compatibility issues, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forum</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? Русский? 日本語? हिन्दी? বাংলা? मराठी? ಕನ್ನಡ?  You can <a href=\"https://translate.wordpress.org/projects/wp/dev/\">help translate WordPress into more than 100 languages</a>. This release milestone (RC2) also 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 RC2 haiku</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><em>At first just a dream</em>,</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>RC2 flows like a stream</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>with seven-oh gleam.</em></p>\n\n\n\n<p class=\"has-text-align-right wp-block-paragraph\"><em>Props to <a class=\"mention\" href=\"https://profiles.wordpress.org/amykamala/\"><span class=\"mentions-prefix\">@</span>amykamala</a> </em><a class=\"mention\" href=\"https://profiles.wordpress.org/annezazu/\"><span class=\"mentions-prefix\">@</span>annezazu</a> <em>for proofreading and review.</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:\"Thu, 26 Mar 2026 18:37:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:93:\"Open Channels FM: How AI and Cloud Tools Are Transforming WooCommerce Development and Testing\";s:7:\"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=2551142\";s:7:\"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/how-ai-and-cloud-tools-are-transforming-woocommerce-development-and-testing/\";s: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:256:\"In this episode, Derek talks with WooCommerce\'s Brian Coords about how AI is reshaping e-commerce, from automating tasks to enhancing flexibility for developers and merchants. Brian shares insights on using AI for better workflows and community 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, 26 Mar 2026 11:41:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:27:\"Gary: Embed All The Things!\";s:7:\"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:25:\"https://pento.net/?p=5677\";s:7:\"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://pento.net/2026/03/26/embed-all-the-things/\";s: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:3361:\"<p class=\"wp-block-paragraph\">Over 10 years ago, we <a href=\"https://make.wordpress.org/core/2015/09/30/feature-plugin-merge-proposal-oembed/\">introduced the oEmbed API to WordPress</a>, expanding how WordPress handled embedding to cover all WordPress sites. It was an intentional decision to focus on oEmbed at the time: we wanted to focus on the embedding mechanism that would give site owners maximum control over what their embeds looked like. The code we wrote back then still runs on tens of millions of WordPress sites every day.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There was something extra that continued to bug me, however. What about all the other sites? oEmbed provides rich embed experiences, but not every site needs that. Sometimes, you just need a card with an image and a description, which is where OpenGraph has similarly stood the test of time. It provides a straightforward method for both site owners to create simple, rich embeds, and for service providers like Slack, Discord, or even Apple Messages to safely create a rich card to place alongside links.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress has grown since then, too. The big change is Gutenberg, of course, which really brought forward the idea that the editor should be a rich content experience, that shouldn&#8217;t just be reserved for the front end. </p>\n\n\n\n<p class=\"wp-block-paragraph\">With that in mind, I build a plugin to handle embedding all the other sites.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-plugin-directory wp-block-embed-plugin-directory has-custom-css wp-custom-css-6d0daac5\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://wordpress.org/plugins/opengraph-fallback-embed/\">OpenGraph Fallback Embed</a></blockquote>\n</div></figure>\n\n\n\n<p class=\"wp-block-paragraph\">This is a block plugin that tries to avoid you using the block it provides if at all possible! Instead, it hooks into the end of the Embed block rendering process &#8211; if the URL you pasted couldn&#8217;t be embedded all the normal ways, this plugin will try a few more fall back options: OpenGraph, Twitter Card tags, or even just a plain description in the meta tags. It&#8217;s the kind of plugin that you can install, and never have to think about again.</p>\n\n\n\n<div class=\"wp-block-jetpack-tiled-gallery aligncenter is-style-rectangular\"><div class=\"\"><div class=\"tiled-gallery__gallery\"><div class=\"tiled-gallery__row\"><div class=\"tiled-gallery__col\"><figure class=\"tiled-gallery__item\"><img alt=\"\" src=\"https://i0.wp.com/pento.net/wp-content/uploads/2026/03/screenshot-3-1008x1024.png?ssl=1\" /></figure></div><div class=\"tiled-gallery__col\"><figure class=\"tiled-gallery__item\"><img alt=\"\" src=\"https://i0.wp.com/pento.net/wp-content/uploads/2026/03/screenshot-1-1008x1024.png?ssl=1\" /></figure><figure class=\"tiled-gallery__item\"><img alt=\"\" src=\"https://i0.wp.com/pento.net/wp-content/uploads/2026/03/screenshot-2-1008x1024.png?ssl=1\" /></figure></div></div></div></div></div>\n\n\n\n<p class=\"wp-block-paragraph\">One of the nicest things about WordPress is how pluggable it is. Even as a long time WordPress Core developer, I don&#8217;t think everything needs to land in Core, sometimes a feature can live as handy little plugin. If you like everything just magically embedding, give this plugin a try!</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, 26 Mar 2026 03:12: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:\"Gary\";s: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:21:\"Matt: Ari &amp;amp; X\";s:7:\"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=151640\";s:7:\"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:\"https://ma.tt/2026/03/ari-x/\";s: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:3274:\"<p class=\"wp-block-paragraph\">I&#8217;m in NYC for the <a href=\"https://luma.com/yb2jnbho\">Stephan Wolfram dev/ai/nyc conversation tomorrow</a> at the <a href=\"https://automattic.space/\">Automattic Noho space</a>. While walking back from the Apple Store in Soho where I had picked up a new Studio Display XDR to try out, ran into one of my favorite <a href=\"https://www.youtube.com/ariathome\">YouTube accounts to follow right now, Ari at Home</a>! I ran into him <a href=\"https://www.twitch.tv/videos/2731606952\">around 32 minutes into this Twitch stream</a>. <a href=\"https://www.youtube.com/watch?v=IQLl7fZ9YxI\">Here&#8217;s how he set up his rig</a>.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\"><p dir=\"ltr\" lang=\"en\">Ran into <a href=\"https://twitter.com/ARIatTWIT?ref_src=twsrc%5Etfw\">@ARIatTWIT</a> walking back from <a href=\"https://twitter.com/Apple?ref_src=twsrc%5Etfw\">@Apple</a> store with new Studio XDR. ? Offered to get him set up on <a href=\"https://twitter.com/WordPress?ref_src=twsrc%5Etfw\">@WordPress</a> or <a href=\"https://twitter.com/tumblr?ref_src=twsrc%5Etfw\">@Tumblr</a>. <img alt=\"🙂\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f642.png\" style=\"height: 1em;\" /> Carrying the display was my workout for the day. <a href=\"https://t.co/q3vgAG7Hxm\">pic.twitter.com/q3vgAG7Hxm</a></p>&mdash; Matt Mullenweg (@photomatt) <a href=\"https://twitter.com/photomatt/status/2036910052074819932?ref_src=twsrc%5Etfw\">March 25, 2026</a></blockquote></div>\n</div></figure>\n\n\n\n<p class=\"wp-block-paragraph\">A video I&#8217;ve shared with friends recently is <a href=\"https://www.youtube.com/watch?v=xmFwGQyBVsc\">when Harry Mack ran into Ari</a>, which was fun for me because they&#8217;re two of my favorite accounts to follow. Sorry I didn&#8217;t freestyle! I had to get back to do some work, which is why I got the monitor.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In other cool X/Twitter news, they launched an awesome feature today that lets you restrict replies not just to people you follow, but to people they follow as well. <a href=\"https://x.com/nikitabier\">Nikita</a> gave a hat tip to the conversation I had with <a href=\"https://x.com/levelsio\">Peter Levels / @levelsio</a>.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\"><p dir=\"ltr\" lang=\"en\">Credit to <a href=\"https://twitter.com/rsrbk123?ref_src=twsrc%5Etfw\">@rsrbk123</a> <a href=\"https://twitter.com/striedinger?ref_src=twsrc%5Etfw\">@striedinger</a> <a href=\"https://twitter.com/x_belous?ref_src=twsrc%5Etfw\">@x_belous</a> <a href=\"https://twitter.com/singhai?ref_src=twsrc%5Etfw\">@singhai</a> for their work on this. <br /><br />And thanks <a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a> for the suggestion <a href=\"https://t.co/Gr2iD1O73Y\">https://t.co/Gr2iD1O73Y</a></p>&mdash; Nikita Bier (@nikitabier) <a href=\"https://twitter.com/nikitabier/status/2036869177173303398?ref_src=twsrc%5Etfw\">March 25, 2026</a></blockquote></div>\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, 25 Mar 2026 23:48: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:69:\"WordPress.org blog: WP Packages is Working the Way Open Source Should\";s:7:\"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=20214\";s:7:\"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://wordpress.org/news/2026/03/wp-packages/\";s: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:8246:\"<p class=\"wp-block-paragraph\">When WP Engine acquired WPackagist on March 12, the WordPress developer community faced a familiar question: what happens when critical open source infrastructure ends up under corporate control? The community already had an answer in progress. Four days later, <a href=\"https://wp-packages.org/\" rel=\"noreferrer noopener\" target=\"_blank\">WP Packages</a> (<a href=\"https://roots.io/wp-composer-is-now-wp-packages/\">formerly WP Composer</a>) launched as a fully independent, community-funded alternative, with some neat additional features.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Built by <a href=\"https://profiles.wordpress.org/retlehs/\">Ben Words</a> from <a href=\"https://roots.io/\" rel=\"noreferrer noopener\" target=\"_blank\">Roots</a>, the team behind Bedrock, Sage, and Trellis, WP Packages is a new open source Composer repository for WordPress plugins and themes. <a href=\"https://getcomposer.org/\">Composer</a> is PHP&#8217;s dependency manager, and it is how many professional WordPress developers install and update plugins and themes in their projects. Every free plugin and theme in the WordPress.org directory is available through WP Packages. <a href=\"https://wordpress.org/news/feed/#switch\">Migrating from WPackagist</a> can be done via a single script or a few terminal commands.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What Happened and Why It Matters</strong></h2>\n\n\n\n<p class=\"wp-block-paragraph\">WPackagist was created in 2013 by Outlandish, a UK-based digital cooperative, and it served the WordPress Composer ecosystem for over a decade. In its later years the project suffered from deferred maintenance, slow update cycles, and little to no community input. When WP Engine announced the acquisition, developers raised immediate concerns about a private-equity-backed corporation controlling infrastructure this foundational to the WordPress developer workflow. WP Engine immediately updated the Composer <code>info</code> field to display a &#8220;WPackagist is now maintained by WP Engine&#8221; notice in every developer&#8217;s terminal. A small thing, but telling. That&#8217;s how corporate ownership changes the relationship between a tool and its users.</p>\n\n\n\n<div class=\"wp-block-group is-layout-constrained wp-container-core-group-is-layout-c1abb2c1 wp-block-group-is-layout-constrained\">\n<figure class=\"wp-block-embed aligncenter is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\"><p dir=\"ltr\" lang=\"en\">And it only took less than 24h for this to pop up on every composer run:<br />&quot;Info from <a href=\"https://t.co/1EEb4PZ9N2\">https://t.co/1EEb4PZ9N2</a>: WPackagist is now maintained by WP Engine. Learn more at <a href=\"https://t.co/89b2hBWxd9\">https://t.co/89b2hBWxd9</a>&quot;<br />Which I\'m sure is a permanent message that will just shift to marketing. Prove me wrong<img alt=\"🤡\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f921.png\" style=\"height: 1em;\" /> <a href=\"https://t.co/HdcuQPkUqV\">https://t.co/HdcuQPkUqV</a></p>&mdash; Jonathan de Jong (@jonathan_dejong) <a href=\"https://twitter.com/jonathan_dejong/status/2032389680415625239?ref_src=twsrc%5Etfw\">March 13, 2026</a></blockquote></div>\n</div></figure>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">Ben had already started building a WPackagist replacement last August, long before the acquisition made headlines. When WP Engine&#8217;s deal landed, he accelerated the launch, <a href=\"https://roots.io/introducing-wp-composer-as-a-wpackagist-replacement/\">going live on March 16</a> with a fully <a href=\"https://github.com/roots/wp-composer\">open source repository on GitHub</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\"><em>Open source repo ≠ transparent system. WP Packages makes everything public, including infrastructure and build process.</em> &#8211; <a href=\"https://x.com/retlehs/status/2034277432241385727?s=20\">Ben Word on X</a></p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">It&#8217;s also just a better tool. WP Packages supports Composer v2&#8217;s metadata-url protocol, which lets Composer fetch metadata only for the packages a project actually needs. WPackagist still relies on the older provider-includes approach, forcing Composer to download large index files before resolving dependencies. Cold dependency resolves on WP Packages are roughly 17x faster: 0.7 seconds for 10 plugins compared to 12.3 seconds on WPackagist.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WP Packages also uses CDN caching with public cache headers and serves immutable, content-addressed per-package files. Package naming is cleaner (<code>wp-plugin/</code> and <code>wp-theme/</code> instead of <code>wpackagist-plugin/</code> and <code>wpackagist-theme/</code>), metadata includes plugin and theme authors, descriptions, and homepage URLs that WPackagist has been missing for years, and updates sync every five minutes rather than WPackagist&#8217;s roughly 90-minute cycle.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"switch\"><strong>How to Switch</strong></h2>\n\n\n\n<p class=\"wp-block-paragraph\">Switching from WPackagist to WP Packages requires just a few terminal commands.</p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Remove your existing WPackagist packages:</li>\n</ol>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\"><code>composer remove wpackagist-theme/twentytwentyfive</code></code></pre>\n\n\n\n<ol class=\"wp-block-list\" start=\"2\">\n<li>Remove the WPackagist repository and add WP Packages:</li>\n</ol>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\"><code>composer config --unset repositories.wpackagist &amp;&amp; composer config repositories.wp-composer composer https://repo.wp-packages.org</code></code></pre>\n\n\n\n<ol class=\"wp-block-list\" start=\"3\">\n<li>Require packages with the new naming:</li>\n</ol>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\"><code>composer require wp-theme/twentytwentyfive</code></code></pre>\n\n\n\n<p class=\"wp-block-paragraph\">Alternatively, use the <a href=\"https://github.com/roots/wp-composer/blob/main/scripts/migrate-from-wpackagist.sh\">migration script</a> to automatically update your <code>composer.json</code>:</p>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">curl -sO https://raw.githubusercontent.com/roots/wp-packages/main/scripts/migrate-from-wpackagist.sh &amp;&amp; bash migrate-from-wpackagist.sh</code></pre>\n\n\n\n<p class=\"wp-block-paragraph\">Roots also provides a <a href=\"https://github.com/roots/wp-packages-changelog-action\">WP Packages Changelog Action</a> for GitHub workflows that tracks dependency updates using the new naming format. Projects using <a href=\"https://roots.io/bedrock/\">Bedrock</a> already ship with WP Packages configured out of the box.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Open Source Wins</strong></h2>\n\n\n\n<p class=\"wp-block-paragraph\">The entire WP Packages project is public. The application code, documentation, and even the full Ansible deployment configuration are available on GitHub. Anyone can fork the repository and run their own WordPress Composer registry. Ben has also committed publicly that WP Packages will never use the Composer <code>info</code> field to push messages, ads, or upsells into developer terminals. That kind of restraint is easier to promise when a project answers to its community rather than to a corporate parent.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WP Packages is funded through <a href=\"https://github.com/sponsors/roots\">GitHub Sponsors</a>. Current sponsors include <a href=\"https://carrot.com/\">Carrot</a>, <a href=\"https://kinsta.com/\">Kinsta</a>, <a href=\"https://wordpress.com/\">WordPress.com</a>, and <a href=\"https://www.itineris.co.uk/\">Itineris</a>. The WordPress ecosystem has always been at its strongest when the community builds the tools it needs in the open. Ben saw a gap forming months before anyone else was paying attention, built something better than what existed, and released it for everyone. No acquisition required. No boardroom decisions about availability or pricing. Just developers solving a problem for other developers and sharing the result. Open source wins.</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, 25 Mar 2026 15:27: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:18:\"Jonathan Bossenger\";s: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:96:\"WPTavern: #210 – Zach Stepek on the Interconnected WordPress Ecosystem, Partnerships and 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=203274\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"https://wptavern.com/podcast/210-zach-stepek-on-the-interconnected-wordpress-ecosystem-partnerships-and-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:58169:\"<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, the interconnected WordPress ecosystem and how to build partnerships and trust.</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 Zach Stepek. Zach is what you might call a unicorn in the tech world, having held roles in design development, and much more. His experience spans everything from Cold Fusion and Flash, to JavaScript, WordPress, and WooCommerce. He&#8217;s worked with brands like IBM and MTV, in varied industries from medical records to e-commerce, and has spoken at WordCamps, WooConf, and contributed to the WordPress community through both agencies and product companies.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You might know about WordPress, agencies, product companies and hosting, but might not have thought about how partnerships actually work in this ecosystem, or why they matter right now. Zach is here to explain just that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">He starts off by sharing his journey into WordPress, his early challenges, and how an unexpected viral moment led him deeper into the ecosystem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">He describes the three interconnected pillars of WordPress success, agencies or individuals, product companies, think plugins and themes, and hosting or infrastructure, and how each depends on the other to thrive.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We discuss the current state of partnerships, how companies collaborate, why trust and values driven approaches are essential, and why the rapid rise of ROI driven, transactional thinking, is at odds with WordPress&#8217; open source routes. Zach explores the perils of short-term wins, and the value of nurturing long-term, mutually beneficial, relationships especially as economic uncertainty and the changes in the broader world are beginning to reshape how companies interact.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Then we talk about the challenges faced by hosting companies, the role of product companies in innovation, and how agencies often bridge these worlds. Zach makes the case for cultivating relationship equity, not just revenue, and how a rising tide can lift all boats, if the community keeps its collective focus.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Towards the end, we discuss how the landscape has changed. Why community contributions matter more than ever, and what the future might hold as WordPress partnerships reach an inflexion point.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;re curious about how these invisible partnership threads bind the WordPress ecosystem together, and how true partnership drives success, 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 Zach Stepek.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I am joined on the podcast by Zach Stepek. Hello Zach.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:00] <strong>Zach Stepek:</strong> Hey Nathan, how you?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:01] <strong>Nathan Wrigley:</strong> Zach and I have been talking for a fairly lengthy period of time, probably close to an hour or something like that. And we&#8217;ve strayed into a variety of subjects, none of which have been related to this podcast, but it&#8217;s been very enjoyable. He&#8217;s a thoroughly sociable and humorous chap, let&#8217;s put it that way. So I&#8217;ve appreciated the last hour. It&#8217;s been an absolute bonus. You&#8217;ve cheered me up no end.</p>\n\n\n\n<p class=\"wp-block-paragraph\">However, the listeners to this podcast, they may not know about you. They may not know what you do, or what you have done or whatever it may be related to WordPress. It&#8217;s a banal question, but I always like to introduce the podcast with it. Will you just tell us about yourself?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:36] <strong>Zach Stepek:</strong> Yeah, so I am what you would hear referred to in the industry as a unicorn. I&#8217;ve been in multiple roles, from design to development. I started my career as a Cold Fusion developer, moved into Flash back in the day. Taught the Flex Framework everywhere from IBM to MTV. Spent time doing the teaching thing for about five or six years as an Adobe Certified Instructor. And then the bottom fell out of that industry, because of a letter that was written about Flash that you may remember.</p>\n\n\n\n<p class=\"wp-block-paragraph\">All of my contracts disappeared overnight. Within a week almost a million dollars worth of potential revenue had been cancelled. Back then I was very nice with my out clauses in my contracts, and I learned a very harsh lesson. Spent a year working support at a company that may have had something to do with the collapse of my industry, working for their care division and learned about the support industry there while learning new things. And one of those new things was WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I worked as an Experience Designer at a medical, an electronic medical records company, working on the design of their EMR software for a while. And then worked at a company called Comply365, where I dove deep into JavaScript and did a lot of demos of their forms platform, which is used by airlines all over the world to do the submission of service forms for aeroplanes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The company actually started as a way to get rid of the giant binders that pilots used to carry that had the manuals. The company started as a digitiser of that material into a tablet application that pilots could carry in the pocket of a briefcase rather than it being a briefcase itself. So worked there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Throughout the years I was working on WordPress. I had been involved in bringing a record label back to Rockford that had folded. Rockford, Illinois is where I live. And we built a WooCommerce site to sell digital music. And that was my first exposure to WooCommerce.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Went on from there to work at a company and organisation called Oscar Mike and the Oscar Mike Foundation, which helps injured veterans participate in adaptive sporting events. They are a great organisation that had a WooCommerce website that was failing under traffic. In fact, the way I got that job was I knew the founder, Noah. And Noah had called me on Thanksgiving during dinner with my family. And he said, hey, I need your help. My website is down. And I said, okay, where is it hosted? And he said, I&#8217;m not sure.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So four and a half, five hours later, we got the site back up. The problem is, he had been featured in an interview during an American football game. The interview was aired during the Thanksgiving Day game between the Green Bay Packers and the Chicago Bears. And so, you know, classic rivalry, the interview had happened in the Chicago Bears Locker room set, and was aired on TV all over Chicago. And so they were getting hit by a ton of traffic, and they got 14 orders before the hosting that was supporting their site died.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:08:29] <strong>Nathan Wrigley:</strong> It went viral. One of the first examples of going viral.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:08:32] <strong>Zach Stepek:</strong> Exactly. And so they got 14 orders and then the server just stopped. And so I had to do root cause analysis, and figure out what had happened. And we determined that it was because the email spool, because there was an email server on the same server as the web server, had filled with the new product order emails from WooCommerce. And because the server didn&#8217;t have a lot of power to begin with, it was a small VPS that had been donated to the organisation. Very grateful that that had happened because that was what got them started. But it was never designed for the level of traffic that they had received. And so after those 14 orders, delivering three emails a piece, the server ran out of memory because the email spool ran the server out of memory.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And when a server runs out of memory, it causes a cascading effect that basically took down the website and everything related to it and hard crashed the VPS so that it could not recover. We didn&#8217;t have a login to go in and reset the VPS until four and a half hours later. So the window of opportunity had already closed by the time I had the login information, could reset the server, and we figured out what was going on. That led to me working there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Worked there for a little over a year and a half. And I fell in love with WooCommerce and WordPress through that process, and ended up talking about that site at WordCamp, Milwaukee, 2015. And at the time Patrick Rauland was the Product Manager for WooCommerce at WooThemes, and he flew from Denver to Milwaukee to see my talk. And that led to a relationship with the WooCommerce team that has not stopped since.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So it was really, really cool. I got to speak at WooConf as a keynote speaker in 2017. I had started an agency that started out small and became a force to be reckoned with in the three years that I was with it. Pivoted out of that for reasons that we don&#8217;t need to get into. And then moved into the hosting space, and I&#8217;ve been there since.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And in that space I&#8217;ve been focused on partnerships. So as of today, I am a freelancer who is doing fractional work in the partnership space and also doing some work on WordPress websites again, so WooCommerce sites and the like. Making recommendations for hosting infrastructure and stability for scaling those sites.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:11:17] <strong>Nathan Wrigley:</strong> That is such an interesting story. I mean, you&#8217;ve run the gamut of all of it really. And dear listener, there are so many other stories that could be filled in in between those things because Zach&#8217;s got a lot going on outside of the day job and the things that he&#8217;s just described, there&#8217;s an awful lot of other things going on as well. So what a rich and interesting life you have had.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I hate to drag it back in a way to what we&#8217;re going to talk about, because given all of that exciting stuff, this may seem, you know, a little bit dry. But we&#8217;re going to get there because Zach wants to talk to us today about partnerships basically.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Just for the listeners Zach, this isn&#8217;t for your benefit, this is for the listener&#8217;s benefit, I think it&#8217;s fair to say that a lot of the people listening to this podcast, we&#8217;ve got developers, we&#8217;ve got people who have been in the space for years and years and years, but I get quite a bit of email and a lot of it says, you know, I&#8217;m new to WordPress and that kind of thing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And they really don&#8217;t know that events take place, that there&#8217;s this whole tapestry of people interconnecting, and hanging out in the real world. And that some of the companies that they may have heard of, they partner up with other companies. So plugin companies might partner up with hosting companies that then do other different things.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Do you just want to paint a bit of a picture of what a partnership is in the WordPress space in 2026? Now I know that&#8217;s a very open-ended question, because there&#8217;s no two that&#8217;ll be alike, but just give us an idea.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:37] <strong>Zach Stepek:</strong> So I like to divide partnerships into two types. One is the relationship between creators or builders or agency owners, and the hosting companies that they use to host the websites for their customers.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And the other, well there&#8217;s two forms of the other, and that is product companies that build products around WordPress who partner with either agencies or hosts.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I&#8217;ve been writing a lot on LinkedIn lately about how I feel about partnerships, and part of it was this pivot into thinking in terms of ecosystems. And I&#8217;m not the first one to say that. Jonathan Wold has been saying that for a few years now, how WordPress is an ecosystem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But there are basically these three layers that are interconnected and work together, right? And so for most successful site builds, you have either an individual or an agency who&#8217;s building the site. You have the product companies that build the software that is layered into WordPress that powers the site, whether that&#8217;s a theme like Ollie or Kadence, or a plugin for anything like Gravity Forms for forms or for Formidable Forms, or any of the other forum companies who will be really upset I didn&#8217;t mention them by name. Or an SEO plugin or any of these other ancillary tools that make WordPress more capable.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so those two things, the agency and then the products need to work in harmony because the agency needs to understand the products well enough to implement them, and the product companies need to understand the agency&#8217;s needs well enough to serve them through their products and through support for those products.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then there&#8217;s a third layer, and it&#8217;s a layer that a lot of people think about in terms of more a vendor relationship than a partnership. And that is the hosting side, the infrastructure. When you start a company and you&#8217;re a retail company, one of the first things that you do is you go out and you look for where you&#8217;re going to put your retail store, right? And so you look for real estate.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You want a couple of things. You want high traffic areas that can handle bringing you people, and that can also handle the amount of people you&#8217;re going to just get naturally, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">So you&#8217;re looking at things like traffic numbers that are going to go past your retail space. You&#8217;re looking at, population density, all of these other things. And where are you going to advertise in town? How are you going to be bringing people to you?</p>\n\n\n\n<p class=\"wp-block-paragraph\">And the internet is very similar in its structure to what we do for a physical retail store. So your infrastructure, your hosting is like the address that you&#8217;re putting your retail store at. And so if you skimp on hosting and you go for somebody who offers $3 a month for unlimited websites, you&#8217;re putting yourself in the cheapest rent you can possibly pay for your storefront. And by doing so, you&#8217;re not going to have the ability to handle the same traffic as say, a location on Madison Avenue in New York might be able to. It&#8217;s different, right? It is a different setup. You could be on, in the Miracle Mile in Chicago. That&#8217;s great retail space. It&#8217;s incredibly expensive, but if your business can support it, that&#8217;s the place to be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There are some other parallels we can talk about with some of the SaaS companies like Shopify that have created almost a mall. Because they&#8217;ve created this payments platform that allows them to expose stores to people, right? So shop pay will give you suggestions of other things that you can buy if you open the shop app on your mobile device. So it has a built in kind of discoverability, but that discoverability comes with a price. And that price is a percentage of your business forever. Even on their high end tiers, they still are getting a percentage of your business on Shopify Plus. That&#8217;s just how they make money.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So all of that to say, there are parallels between how we host a website and how we might position a retail space, right? So premium hosting is a big deal. It&#8217;s a huge deal, especially in e-commerce where scale matters because every visitor is a potential sale. Every sale is the only way your company makes money, right? The impetus of e-commerce is transactional. It is, somebody comes to your store, buys a product, you ship it to them, they receive it, and you have completed your contract with them to deliver the product that they asked for.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because of that, if they come to your website and your site fails because you&#8217;re getting too much traffic, for example, it&#8217;s akin to if you were walking through a Best Buy and as you&#8217;re walking through the store, things around you just start to deteriorate. If you were walking through a store where the products you were looking at just stopped existing for fractions of time, like how long would you stay in that store?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:12] <strong>Nathan Wrigley:</strong> Or you couldn&#8217;t quite pick the box up. You could get your hands on it, but then everything just stopped. You couldn&#8217;t lift it off the shelf. Yeah, that&#8217;s, you wouldn&#8217;t stay long is the answer.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:22] <strong>Zach Stepek:</strong> No. No. And that&#8217;s the same thing that happens with bad infrastructure for e-commerce sites. So that&#8217;s that third pillar of partnership and what makes a successful WordPress site.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:33] <strong>Nathan Wrigley:</strong> Can I just ask a quick question around that? So before we penetrate deeper into that. So you mentioned these three things and you&#8217;ve got the, and you did them in that order. So we had agency, or that could be an individual, I guess, but let&#8217;s go with the agency word because it&#8217;s easier. Which then has some kind of relationship with the product companies. So themes, plugins, whatever that may be. So that&#8217;s the second tier, if you like. And then there&#8217;s the third tier, which is hosting, stroke, infrastructure. But let&#8217;s, again, let&#8217;s just call it hosting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So you listed those things in order, but I&#8217;m imagining, and I could be wrong, that instead of it being like a layer cake, it&#8217;s more of a kind of an overlapping Venn diagram. The three things are in concert with each other. So a triangle if you like. So the agency, whilst in your description, it&#8217;s kind of next to the product company, well it&#8217;s also next to the hosting and infrastructure side of things as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In other words, the partnerships that we&#8217;ll get into, it&#8217;s not bound from layer one to layer two, and layer two to layer three. Three goes to one, two goes to three, and so on. Have I encapsulated that right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:35] <strong>Zach Stepek:</strong> Yeah, think of it almost as a Celtic knot, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:38] <strong>Nathan Wrigley:</strong> Yeah, okay. Go Google that, dear listener.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:41] <strong>Zach Stepek:</strong> It&#8217;s this never ending connection of multiple pieces all forming a whole. And the interconnected nature of it doesn&#8217;t end, at least when things are working well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There are product companies that have terrible support. There are infrastructure companies, hosting companies, that have terrible support. So those things, there are agencies that have terrible support, I mean this is not something that is only relegated to the product and hosting companies. Every layer has the potential for having pieces fall apart. The strength of the whole is only as strong as the weakest of the parts in the partnership.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:22] <strong>Nathan Wrigley:</strong> That&#8217;s fascinating. So we&#8217;re imagining that these things are not just overlapping, they&#8217;re holding each other together. And at this point I&#8217;m kind of imagining almost like a bubble that you blow with those bubble kits that you get as a child. The whole thing is, those three things are holding that bubble together, but it just takes one of them, the little pop with the needle and doop, the whole thing sort of comes apart because, they are the underpinnings of each other. That&#8217;s really interesting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Can I just make an observation at this point? And again, you can rail against it or agree. I don&#8217;t know where you&#8217;re going to go. It feels like the revenue side of those things, the giant if you like, in the room there, the one that traditionally seems to make the money, all the money, most of the money, lots of money, is the hosting infrastructure side of things.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then the two other layers, you know, the product companies, the theme companies, the plugin companies, whatever. There are a few examples that escape velocity and managed to pull away from the earth&#8217;s gravity, you know, Gravity Forms might be a good example in fact, who have that trajectory, but they&#8217;re big. But the rest of it is just lots and lots of much smaller entities. So thousands, many, many thousands of smaller entities with a single theme, or a collection of plugins, or what have you. And the same, I think would be true for the agencies. Just lots and lots of that spread out.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So in terms of demographics, the hosting companies, that seems to be a small number, but they make lots of revenue. Whereas the other two, the agency and the product companies, large numbers, all making less revenue individually, potentially. I know I&#8217;m drawing a lot of parallels that maybe are not necessarily going to hold up to scrutiny, but you get what I mean. That&#8217;s quite an interesting dynamic, because they&#8217;re relying upon each other and yet in some situations, you have a few players which might be able to punch above their weight because of their bank balance and the size of their business.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:11] <strong>Zach Stepek:</strong> No, absolutely. I mean we&#8217;re all familiar with the larger WordPress VIP level agencies, right? They&#8217;re the people who are out there in the community giving back the most frequently a lot of the times. So, you know, you see companies like Fueled who now has 10up as its WordPress practise within Fueled, right? And Fueled gives back a ton of open source technology just to the community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It&#8217;s stuff that they built to serve their customers that they&#8217;ve given back to the community, because Jake has always been a good steward of the WordPress community in general. So he understands and recognises that the true benefit of an open source platform like WordPress is not only the things we can create on top of it because we have access to the code, but the community that can be created on top of the solutions we create.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So look at something like ElasticPress as an example. ElasticPress is an open source tool that also has been commercialised into a hosted product by Fueled. And it replaces search in WordPress with something that is much, much better, right? ElasticSearch is much better at searching indexed content than SQL is at searching a relational database for anything within it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It replaces something that is a bit of a hole in what WordPress can do with something that is better. And they gave it to the community. They gave it to the community, because it&#8217;s based on open source server software. So it made sense for the plugin that enables the use of this open source server with this open source CMS to also be an open source plugin. And because of that, they have community members that contribute back to the ElasticPress product when there are bugs that they find, and solutions to things that they find. And they have a constant feedback loop of how to improve their product.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And that all happens because they decided to be good stewards within the WordPress community. They&#8217;re not the only ones. There are many. WebDevStudios just released Theme Switcher Pro. If you haven&#8217;t heard Brad talking about Theme Switcher Pro yet, you haven&#8217;t been on the internet around WordPress, because are absolutely right to be marketing what they built.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It was, again, something that was built around a need. They saw a need for an easier way for people to move from where they were with classic themes, to block-based themes more gradually. So in large enterprises, it&#8217;s sometimes hard to just wholesale replace the theme of a website. So they built a solution that allowed you to replace parts of it, a little bit at a time and move to a block-based architecture over time rather than all at once.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so these companies are building tools around what WordPress can do to fit needs that they&#8217;ve found working with their customers. So in these cases, the agencies become the product companies, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then there are product companies that, they were built around solving a need. Things like Gravity Forms, or other form plugins, that were built to solve the problem with form submissions in WordPress. And all of these things are all participating in the same ecosystem, right? But if you build a site that has 75 plugins installed and one of them doesn&#8217;t play well with others, the whole thing comes tumbling down.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:01] <strong>Nathan Wrigley:</strong> Oh, that&#8217;s a good analogy.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:02] <strong>Zach Stepek:</strong> You look at that, and the reason we&#8217;re, that I&#8217;m focused right now on ecosystem building and on building this, a network of people who want to work together is because a rising tide lifts all ships, right? We want WordPress to continue growing as an ecosystem. And like you mentioned, hosting companies tend to be the ones with the most money in the room. That&#8217;s not always the case, but they make a good amount of money on hosting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I think that hosting companies have a responsibility to be good stewards to the community in the same way that I just talked about WebDevStudios and Fueled being good stewards of the community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so hosting companies are in a unique position where they can drive these values based partnerships that allow for agencies to meet product owners and product owners to meet agencies who are all part of their partner programmes, right? They all can invest together in their mutual success.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Values driven partnership is a long game, right? It&#8217;s kind of the difference between planting a forest and picking apples off of a tree. If all you want is the apples, you just strip the branches of all the apples and you move on. But if you&#8217;re planting a forest together, you&#8217;re thinking about ecosystem, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">So in the best partnerships, both sides are invested in that mutual success. You care about your partner&#8217;s customers, their teams, the reputation they carry in the community. Revenue matters, but the revenue is just the result of doing all the other things well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:27:45] <strong>Nathan Wrigley:</strong> There&#8217;s so much to unpick here and I&#8217;m going to try and do some of that. So you&#8217;ve got this rising tide carries all boats thing, which I think is so important. We forget that at our peril.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But also I want to use the word synergy, where the whole is greater than the sum of its parts. You know, WordPress is so impressive because all these three layers, the agency, the product, the hosting company, because they&#8217;ve got overlapping concerns and it&#8217;s just over the last 20 odd years, it&#8217;s worked somehow.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Often on this podcast I say, I want to rewind, and that&#8217;s what I want to do. I just want to rewind back 22 odd years. There was no playbook for how this would turn out. We didn&#8217;t know that any of those three layers would exist. We didn&#8217;t know that there would be a thing like an agency, that there would be a freelance web developer, that that would be a thing. These industries didn&#8217;t exist.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We didn&#8217;t know that product companies would pop up because the plugin architecture and the theme architecture in WordPress would enable that, and it was okay to exchange money for those things. It turned out that was a thing with WordPress that you could do that other CMSs kind of pushed back upon. And then that hosting would become the bedrock of that whole thing as well. We didn&#8217;t know that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And 22 years later, with a lot of agreement, but a fair level of disagreement, I imagine along the way, those three pillars, for want of a better word, they&#8217;ve evolved and they&#8217;ve become what they are now. We are recording this in the year 2026, and I feel like there&#8217;s a change that&#8217;s happened at some point. I don&#8217;t know when it was, but it feels like that synergy, that unwritten, and yet completely understood by the WordPress community, that unwritten, unspoken, contract, in many ways. It feels like that&#8217;s maybe disappearing a little bit.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I&#8217;m probably overemphasising that, but do you sense that a bit? That the maker taker thing is kind of skewing it. That money has become such an integral part of the WordPress project, so many lives bound up with the money, the revenue that&#8217;s generated by the company that they work for and what have you, that it&#8217;s so easy to lose sight of that bigger piece. The rising tide carries all boats.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And instead of the rising tide, what we&#8217;ve got is circling the wagons. You know, looking out for ourselves, and making sure we&#8217;ve got what we need to survive. And of course, just forgetting, wait, the very fabric, the foundations upon which our business is built, we must maintain that in the next year, in the next two years, in the next five and ten years, otherwise we&#8217;re just, well we&#8217;re standing on sand, we don&#8217;t have a firm foundation. There was a lot there and there certainly was no question, but discuss.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:30:26] <strong>Zach Stepek:</strong> No, so what we&#8217;re seeing is this move toward, it&#8217;s unfortunate because I see it happening in a lot of companies right now. Where they&#8217;ve taken on investment. They no longer are fully in charge of their own destinies, because they now have people to answer to that want to get a return out of the money they&#8217;ve injected into the WordPress community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And the only thing that private equity generally sees is the dollar, or the pound, or the whatever your local currency is, right? That&#8217;s all they see. That&#8217;s all they see. And when you talk about an ecosystem of interrelated, interlocking pieces that all have to work in harmony, and then you have a force that&#8217;s in an industry that is interested only in transaction, that is at odds with how an open source community is built, right? So taking things to a transactional level only chases short term wins, because that relationship only lasts as long as you can continue to squeeze money out of it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:31:37] <strong>Nathan Wrigley:</strong> It is such an interesting juxtaposition with broader society. So you live in the US I live in the UK. We&#8217;re both democracies, and we&#8217;re both capitalist democracies. And from a very early age, the subliminal message being delivered to all of us is, work hard, produce things and just see what you can get out of it all. Charge what the market will bear, and the rest of society will figure all of that out. The market is the thing, and somehow it&#8217;ll all beautifully work and balance.</p>\n\n\n\n<p class=\"wp-block-paragraph\">This is so different to that. This is something else. It&#8217;s some, there&#8217;s a philanthropic outside to it which, it&#8217;s very hard to encapsulate, but the whole 22 year history of it is built upon the shoulders of many, many thousands, tens of thousands of people who didn&#8217;t necessarily have that as the basis upon which they were working.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You know, there was a lot of philanthropy, a lot of volunteer time, for want of a better word. And so projects like WordPress, it feels like, if the only metric for success by a WordPress company is going to be ROI for whatever reason, you mentioned having to repay the venture capitalists or what have you. But if ROI is the only metric upon which anything is based, you aren&#8217;t thinking about the rising tide carrying all boats. You are just thinking what&#8217;s the next month going to do, and what&#8217;s the next month going to do?</p>\n\n\n\n<p class=\"wp-block-paragraph\">And again, I haven&#8217;t got a question in there, there&#8217;s just an observation. But there&#8217;s something intangible there. There&#8217;s something that our ecosystem requires in order to survive that it feels is harder to, conjure up in the real world in 2026 than it was say in, I don&#8217;t know, 2017 or something like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:33:24] <strong>Zach Stepek:</strong> Yeah, well, and here&#8217;s the thing, okay. When you focus on these short-term wins only, and you ignore the potential of long-term partnership and of ecosystem building, you lose out on potential revenue because of shortsightedness, right? If all you&#8217;re trying to do is close the next sale as quickly as possible to make people who don&#8217;t really know your business happy, then you&#8217;re losing sight of the potential that comes from investing in long-term sales.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And agencies understand this, especially the more enterprise focused agencies who have sales cycles that are 12, 18, 24, sometimes even 36 months long. So when these companies start to put profit ahead of people, ahead of partnership. When profit is the priority, then anything they call a partnership programme is really just a house of cards. It might stand for a while, but it&#8217;s fragile. And when people get treated like line items instead of collaborators, that trust erodes very quickly.</p>\n\n\n\n<p class=\"wp-block-paragraph\">When every conversation becomes transactional, everyone, every layer that we talked about starts to just focus on protecting their own interests. And the irony is that the strongest growth comes from the opposite approach, right? When partners focus on people, they focus on shared wins. Those successes create real social proof.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then the community sees it. And the customers see it. And that reputation, that long-term investment in the community as a whole, in the ecosystem, is more powerful than any potential short-term revenue spike. Trust and reputation compound over time. It&#8217;s not something you develop in a single conversation.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then the other thing that&#8217;s really important about this is what the community perceives, right? Love it or hate it, the WordPress community is very harsh to companies that they see as just trying to eek out profit without giving back, without doing the things that are required to support the very ecosystem that allows them to make money. And so community perception is hugely important, and that perception drives long-term growth. Short-term thinking damages your brand equity, long-term thinking builds it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Trust, in this case, is the durable asset, right? It&#8217;s not what your MRR is or your ARR is. Those things are important because they allow you to support the business and the livelihoods that you are supporting as a company. But trust is the most important asset a company has. And when that starts to erode because the company stops acting like it used to, before the injection of capital, and starts acting like a business that is focused on only its capitalistic pursuit, trust starts to degrade, and then eventually it&#8217;s just gone.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:36:43] <strong>Nathan Wrigley:</strong> I&#8217;m imagining like a, I often like to kind of encapsulate things in my head and I&#8217;m kind of imagining a really tall skyscraper. And the scenario that you are describing is more death by a thousand paper cuts. It&#8217;s this slow erosion of that building. You know, imagine that building where the way that you&#8217;ve just described things, you might be removing one brick one day and then you come back another day and take a couple more. Before you know it, the whole thing starts to look shaky.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So it&#8217;s not that giant, swinging wrecking ball that&#8217;s coming and in one hit has just demolished the whole thing. This is a slow, but potentially with a certain critical momentum and enough steam behind it, enough erosion of the fabric of the whole thing that it&#8217;s inevitable. Unless the brakes are put on, that slow erosion, the building will fall down.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I&#8217;m wondering if that&#8217;s more a consequence of where we are at. And I don&#8217;t mean you and I or even the WordPress community. The confidence in economies worldwide, and the nature of what&#8217;s going on in the broader world, I wonder if those kind of concerns play in.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So you know more about the corporate side of WordPress businesses than I do. I don&#8217;t know what is happening at the top tier of a lot of those bigger businesses. The sort of third tier that you mentioned. I do wonder if there&#8217;s a more, how to describe it, bean countery kind of approach to businesses.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I wonder if the calculus is much more now, what is the ROI? If we don&#8217;t see ROI, it&#8217;s not happening. Whereas in the year 2017, it would be, what&#8217;s the ROI? Well, yeah, we&#8217;ve got things which we can say we&#8217;ll make a profit from that, but we&#8217;ve also got the long bets. We&#8217;ve got the community side. We&#8217;re going to fly people to that event. We&#8217;re going to sponsor that person over there, two days a month because we know that they&#8217;re contributing to Core, and that&#8217;s part of this bigger rising tide carries all boats metaphor that we&#8217;ve been using. I don&#8217;t know if it&#8217;s true, but I wonder if the state of the world that we&#8217;re in, I wonder if that contributes a bit to it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:38:42] <strong>Zach Stepek:</strong> I think it does. I think there&#8217;s a lot of fear right now because the economy has not been as strong as what it had been in the past. We all dealt with a period of extreme recession. And despite some governments not wanting to say the word, right? The COVID-19 pandemic caused a shrink in economic factors across the board. And it was inevitable that that was going to happen.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Some countries were hit harder by inflation as a result of that than others. But it&#8217;s a reality that we&#8217;ve all had to deal with, because demand for things went up and the supply went down because the workers simply weren&#8217;t there to make the things. And that&#8217;s just basic economics in a capitalistic society, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">So, yes, there&#8217;s a lot of fear. There&#8217;s a lot of fear that is causing businesses to make decisions that they wouldn&#8217;t have, you know, as you mentioned, just eight years ago in 2017. And all you have to do is look at the sponsorship page on any WordCamp or any tech event. Even events as large as CloudFest. Look at the sponsor pages. Look at who&#8217;s there and compare it to what you&#8217;ve seen in the past.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The numbers are dwindling, right? The people who are willing to continue making those investments are dwindling. Companies, whether they are product companies or agencies or hosting companies, but especially hosting companies this year, are deciding not to send people to events. They&#8217;re just not. I have heard from multiple people that work at hosting companies that are not leaving their home countries this year. It&#8217;s a belt tightening across the board.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I understand that there&#8217;s a desire to tighten the belt and make sure that the company can survive through this current economic shift. And for hosting companies that own their own infrastructure, and even those who are renting infrastructure from a hyperscaler like Google or AWS, there&#8217;s a very scary thing on the horizon that we&#8217;re seeing, and that is the shortage of components for building servers.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And there&#8217;s this little thing that is an artificial term called Artificial Intelligence. They&#8217;re large language models people, they&#8217;re not Artificial Intelligence. There&#8217;s no intelligence there. They&#8217;re just regurgitating things they have read and digested, right? But these AI companies, these large language models take a tremendous amount of processing power.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I&#8217;m reminded of the first time that I visited a data centre. And I was in the data centre and across the aisle from what I was there to see was an AI company. And they had their servers there and the data centre had to retrofit additional cooling for the area where those AI servers were running. Whereas you could probably just wear a T-shirt and be fine in a data centre, in most cases. If you were in that area without a coat, it was bitterly cold, because there was just so much air that was chilled air being shot at these machines that were filled with graphics processors that were generating massive amounts of heat.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so you think about that, and you think about the level of hardware required to generate that amount of heat out of a simple server, and the difference in the number of components, the amount of RAM, the amount of processors, the number of graphics cards at $2,000 a piece that have to go into these massive beasts of servers. And the component shortage has a lot of hosts scared too. Not a lot of them thought in advance to buy a ton of RAM and a ton of processors, because we&#8217;ve never had a true supply shortage in that area except during the pandemic.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And at that time, everybody was slowed down. Now, nobody has slowed down. Demand is higher than ever before for hosting, and the infrastructure just isn&#8217;t there to support it. So as the prices of things like a stick of memory have gone up, the cost, the raw cost of hosting will go up too. And we&#8217;re just starting to see the beginning of that effect. But I think that companies that were built on $3 hosting are going to very quickly find that their model is no longer supported by component cost.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So yeah, there&#8217;s fear. There&#8217;s fear that is causing people to make decisions that are focused on revenue rather than relationship. And I think it&#8217;s incredibly shortsighted. I understand it. I get why fear is such a motivating factor, especially when you have lives that you&#8217;re responsible for. I&#8217;ve been there. But the important thing is remembering that, in everything you do, there are real humans behind these brands, behind these products, behind these agencies.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It&#8217;s really easy to talk about a whole bunch of companies like their logos on a slide. And in fact, that&#8217;s what some of these partner programmes are designed to do, collect logos. But that&#8217;s transactional, right? And all of these people are people. All of these teams are created from people, founders, developers, support staff. They&#8217;re all people, and they care deeply about the work they&#8217;re doing. At least in most cases, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:44:55] <strong>Nathan Wrigley:</strong> Yeah. Just sort of interjecting there as well. The fear aspect that you mentioned for all of the reasons you&#8217;ve just described is so understandable where we are right now in 2026. And so ROI, it feels like it&#8217;s becoming the thing. The thing instead of anything else. And I wonder if that&#8217;s because there&#8217;s a vacuum on the other side where anything philanthropic, so let&#8217;s say for example, I don&#8217;t know, you contribute something by giving somebody a day a week to work on Core.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The calculus there is, well, we could do the ROI thing, or we could do this other philanthropic thing, but nobody will know about it. Only we&#8217;ll know about it. And if we write a blog post, then a few people will know, but almost nobody will see that that&#8217;s happening. And so there&#8217;s no kind of quid pro quo on the other side. There isn&#8217;t the recognition.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But it feels like the wheels are beginning to turn, the cogs are starting to move around that. There seems to be some initiatives that are coming, which are going to try and address contributor hours, or badges, or whatever it is that you do. Some way of recognising, okay, that company did this, we need to lord that, and praise that, and recognise that, and write it down and keep a record of it so that we know in the future.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And maybe that will be something which will be put into the spreadsheet. There will be an ROI on that thing because it&#8217;s more tangible. It will never be as tangible as the ROI of the dollar that you get back from the dollar that you spent. But at least it will be something. It&#8217;s not just sort of shouting into the void, we give that person a day, a month. Nobody knows. Nobody knows give that person a day, a month to contribute to Core. And maybe if we get to the point where those kind of things are recognised.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I don&#8217;t know what that means. I don&#8217;t know how we make that and inflate that into something important. But maybe those kind of things start to need to matter in a way that they never did matter before, because they just didn&#8217;t need to matter. But now the landscape has changed. They now do need to matter, otherwise the revenue from these companies is going to dry up.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:47:03] <strong>Zach Stepek:</strong> Yeah, I think that&#8217;s, it&#8217;s really interesting because when you look at all of this, first of all, partnerships, what we started this whole conversation around. You mentioned the spreadsheet. Partnership success doesn&#8217;t often show up overnight on that spreadsheet, right? It&#8217;s like tending a garden. It&#8217;s not flipping a switch.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So every partnership you grow, see what I did there, it takes time. You have to build the trust. You have to learn how each other&#8217;s businesses work. If it&#8217;s a vendor relationship and it&#8217;s only built on affiliate income, right? The agency recommends you because you give them more money than another host to do so, well, are you going to learn about that agency&#8217;s business ever? No. But if you invest the time, you build that trust, you find out how each other&#8217;s businesses work. Over time, those relationships bear fruit. And the first casualty of fear is patience.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:48:07] <strong>Nathan Wrigley:</strong> I like that. That sounds like the strap line from a movie.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:48:13] <strong>Zach Stepek:</strong> You know, revenue is just a signal. It&#8217;s one signal, right? It&#8217;s not the only signal.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:48:20] <strong>Nathan Wrigley:</strong> It&#8217;s so interesting this, and it&#8217;s so difficult. So here we are, we&#8217;re doing this dance. It&#8217;s even difficult to describe even though we&#8217;ve poured the last, you know, hour into thinking about this, it&#8217;s very hard to get hold of. It&#8217;s really difficult to describe. It&#8217;s very difficult to work out, to calculate. And that maybe is it. Maybe that&#8217;s the problem where we&#8217;re at. We can&#8217;t calculate it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Like you said, it&#8217;s growing the garden, it&#8217;s turning up, doing things, things will blossom over time. It&#8217;s keeping the faith. It&#8217;s less circling of the wagons, more the rising tide carries all boats mentality.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Certainly this year feels like we&#8217;re going to go through something. And whatever comes out the other side, it will be interesting to see whether it was that wrecking ball, or whether it was people just taking a brick one at a time. Or whether it was adding stories to the building, you know, adding extra floors that didn&#8217;t exist before. It&#8217;ll be really interesting to see how this pans out because I think we&#8217;re at an inflexion point.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:49:23] <strong>Zach Stepek:</strong> We are. And I know, you said it&#8217;s hard to measure. And I do agree that it&#8217;s hard to measure the impact of something like partnerships. Revenue is the most common signal to use for that, right? It&#8217;s the thing that makes the most sense to a business mind. And the revenue is what fuels business growth, I get that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I would posit that there are a few other metrics, a few other things we can start to look at to measure success beyond revenue. Now, like I said, revenue&#8217;s a signal. There are other signals too. What&#8217;s the trust between teams? How often are partners collaborating proactively? If you&#8217;re a hosting company, you see this pretty actively. How often are your customers having better outcomes because of the partnerships you&#8217;ve forged?</p>\n\n\n\n<p class=\"wp-block-paragraph\">Relationship equity precedes the revenue. These outcomes matter. Partnerships compound slowly. And when you&#8217;re in an environment where patience is thin because fear is high, taking the time to develop true partnerships is hard. But it is always the people that do the hard work that succeed in the end.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:50:36] <strong>Nathan Wrigley:</strong> I think that&#8217;s the perfect place to put a pin in it. That was such an interesting conversation. I don&#8217;t claim to understand the nuance of it still. I don&#8217;t, certainly don&#8217;t claim to have the answer but it was fascinating chatting that through with you. I think there&#8217;s things to be addressed in the year 2026, and that certainly was an interesting foray into that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">As much as I don&#8217;t want to end the conversation, I think now is probably the moment to do that. I just want to give you an opportunity to tell people where you are. You obviously had your bio at the beginning, but I don&#8217;t think you dropped a website or anything like that. So if you want to drop a social handle or a particular URL that people can find you, if they want to get into this conversation more deeply, go for it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:51:18] <strong>Zach Stepek:</strong> Yeah, so all of my eCommerce consultancy is done through mightyswarm.com. That&#8217;s my agency. The fractional partnership stuff that I&#8217;m working on, the fractional help, it will also run through that. It&#8217;s not quite updated to include that yet. You can find me at zachstepek.com, which is my personal site, talks a little bit about what I do. I&#8217;m in the process of rebuilding that, so it also encapsulates the other part of my life which is my concert and music photography, which we&#8217;ll talk about it another time. And I&#8217;m zstepek pretty much everywhere. So Z S T E P E K on all the social platforms that matter.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:52:00] <strong>Nathan Wrigley:</strong> I will make sure that I put whatever you&#8217;ve just said into the show notes. So if you go to wptavern.com and you search for the episode with Zach Stepek then you&#8217;ll be able to find it. If you scroll down to the bottom, it&#8217;ll be under the beginning blurb, and the transcription and things like that. Go to the bottom. There&#8217;s a useful link section so it will all be there. So Zach, what a fascinating conversation that was. I really appreciate that. Thank you so much for chatting to me today.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:52:25] <strong>Zach Stepek:</strong> Thanks for having me. It was a lot of fun. It&#8217;s always good to talk to you.</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/zachstepek/\">Zach Stepek</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Zach is what you might call a ‘unicorn’ in the tech world, having held roles in design, development, and much more. His experience spans everything from ColdFusion and Flash, to JavaScript, WordPress, and WooCommerce. He’s worked with brands like IBM and MTV, in varied industries from medical records to e-commerce, and has spoken at WordCamps, WooConf, and contributed to the WordPress community through both agencies and product companies.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You might know about WordPress, agencies, product companies, and hosting, but might not have thought about how partnerships actually work in this ecosystem, or why they matter right now. Zach is here to explain just that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">He starts off by sharing his journey into WordPress, his early challenges, and how an unexpected ‘viral’ moment led him deeper into the ecosystem. He describes the three interconnected pillars of WordPress success: agencies (or individuals), product companies (think plugins, themes), and hosting / infrastructure, and how each depends on the other to thrive.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We discuss the current state of partnerships, how companies collaborate, why trust and values-driven approaches are essential, and why the rapid rise of ROI-driven, transactional thinking is at odds with WordPress’ open source roots. Zach explores the perils of short-term wins and the value of nurturing long-term, mutually beneficial relationships, especially as economic uncertainty and changes in the broader world are beginning to reshape how companies interact.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Then we talk about the challenges faced by hosting companies, the role of product companies in innovation, and how agencies often bridge these worlds. Zach makes the case for cultivating relationship equity, not just revenue, and how a rising tide can lift all boats if the community keeps its collective focus.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Towards the end we discuss how the landscape has changed, why community contributions matter more than ever, and what the future might hold as WordPress partnerships reach an inflection point.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re curious about how these invisible partnership threads bind the WordPress ecosystem together, and how true partnership drives success, 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://www.elasticpress.io\">ElasticPress</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://themeswitcher.com\">Theme Switcher Pro</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://mightyswarm.com\">Mighty Swarm</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://zachstepek.com\">zachstepek.com</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://x.com/zstepek\">Zach on X</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.linkedin.com/in/zachstepek/\">Zach 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, 25 Mar 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: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:44:\"Open Channels FM: Pink, Pixels, and Progress\";s:7:\"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=2551330\";s:7:\"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:49:\"https://openchannels.fm/pink-pixels-and-progress/\";s: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:164:\"In this clip Jessica Malamud chats with Adam Weeks about Elementor\'s brand evolution, focusing on the right pink shade and design details that emphasize creativity.\";s: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, 25 Mar 2026 13:15: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:48:\"HeroPress: An Eighth Grader’s Dream Comes True\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=8545\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:142:\"https://heropress.com/essays/an-eighth-graders-dream-comes-true/#utm_source=rss&utm_medium=rss&utm_campaign=an-eighth-graders-dream-comes-true\";s: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:7323:\"<img alt=\"Pull Quote: The sense of community and belonging was strong.\" class=\"attachment-large size-large wp-post-image\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2026/03/032426.webp\" width=\"1024\" /><figure class=\"wp-block-audio\"><audio controls=\"controls\" src=\"https://heropress.com/wp-content/uploads/2026/03/ray_mitchell_heropress.mp3\"></audio><figcaption class=\"wp-element-caption\">Here is Ray reading his own essay aloud.</figcaption></figure>\n\n\n\n<p>When I was in eighth grade, I wanted to be a commercial artist. It wasn’t common thinking at the time (and for some it still isn&#8217;t) for art or design to be considered a practical career path. The thinking was, within art there was fine art for the people who could really paint or draw, and commercial art for people whose skills were passable; neither of which would lead to a comfortable lifestyle.</p>\n\n\n\n<p>I was just OK and never would be a fine painter, I was good enough at design for screen-printing and designing the posters and programs for the Jr. High fashion show or laying out the school newspaper. I liked it a lot, though I eventually pursued other career aspirations.</p>\n\n\n\n<p>I start the story this way because later in life, WordPress gave me the opportunity to have the career I wanted when I was 14.</p>\n\n\n\n<p>Today I run Made for You Media, a well-respected digital marketing agency specializing in WordPress for local businesses, but the path here took many turns and had many ups and downs.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-how-i-got-here\">How I Got Here</h2>\n\n\n\n<p>After attending college, the path I found myself on led me far from the world of art. I spent time working in a chemistry lab, in retail, then eventually to financial services. I spent almost twenty years working for the &#8220;Don&#8217;t leave home without it&#8221; credit card company, serving international markets in Asia and Latin America. During a stint in Canada, my wife grew tired of being away from family. With news that we would soon have a grandchild on the way, we started the process to move back home.</p>\n\n\n\n<p>I knew that I wanted my own business. I planned to start a company to coach small business owners on how to build productive, high-functioning teams. Even though the dot.com bubble was long gone, I knew that even for a small, local company, I would need a good website.</p>\n\n\n\n<p>While closing out my days working in Canada, I would get home from the office around 7:30 in the evening, get something to eat, then from 9PM to about 1 or 2 in the morning, work on building, or trying to learn how to build, a business website. I repeated this routine for weeks until I had something professional looking.</p>\n\n\n\n<p>I hand-coded this first website in 2009 and it received lots of complements. However, as good as it looked on the outside, it seemed that things were always breaking under the hood. I had heard about &#8220;this WordPress thing&#8221; and started looking into it. I recreated my HTML site using the &#8220;theme that cannot be mentioned&#8211;but had great typography&#8221; and haven&#8217;t looked back.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-pivoting-to-wordpress\">Pivoting To WordPress</h2>\n\n\n\n<p>Ultimately, the coaching business I built that initial website for failed, but what I learned in building my first WordPress site enabled me to start building websites for other people. During the autumn of 2010, I built my first site for a paying client. It took me forever, but I got it launched. After building a few sites I needed to learn more than what I could on my own at the University of Google. I started attending WordCamps.</p>\n\n\n\n<p>WordCamp Raleigh was the first WordCamp I attended, and it was a great experience. In WordPress, we often talk about “the WordPress community” and that’s what it was. The same people whose blog posts I read were there in person. Experts, people who in my mind were the stars of the WordPress galaxy, were there, talking, teaching, and sharing with regular people like me. We ate barbecue, joked, and laughed together just like at a family or school reunion. The sense of community and belonging was strong, and something I still cherish.</p>\n\n\n\n<p>I got hooked on WordPress through <a href=\"https://profiles.wordpress.org/chrisjean/\">Chris Jean</a>&#8216;s exuberant enthusiasm in talking about &#8220;the loop&#8221; and his new plugin. I bought the plugin even though at the time I didn&#8217;t understand what the loop was, I just knew from his excitement it had to be good. At another WordCamp <a href=\"https://profiles.wordpress.org/sabreuse/\">Amy Hendrix</a> talked about how important it was to contribute back to WordPress, and she sunk the hook deeper. Over time, I went from attending WordCamp, to folding up chairs at the end of the day, to filming other people’s presentations, to delivering my own. I&#8217;ve since had the opportunity to speak at several WordCamps including a couple of times at WCUS.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-what-we-ve-become\">What We&#8217;ve Become</h2>\n\n\n\n<p>Over the years my company has built many websites using WordPress, mainly supporting local businesses in the US, but also internationally. We&#8217;ve been able to serve many non-profit organizations, allowing them to effectively and affordably serve their communities, leveraging the WordPress platform to attract volunteers and donations. I even had the opportunity to write my first book, Magical Websites for Coaches, an instructional text that showcases the power of WordPress.</p>\n\n\n\n<p>I point this out because WordPress and the WordPress community enable someone who&#8217;s motivated to leverage their experience to start what can become a very profitable business at a very low cost. With the business lessons I&#8217;d learned over the years, a domain name and an affordable shared hosting plan (thanks <a href=\"https://dreamhost.com\">Dreamhost</a>) and a few business cards, I was able to launch my business. In the process, I&#8217;ve had the opportunity to make great friends and build lasting relationships, meet, and learn from some very smart and inspiring people, and after many years, have a successful career “doing commercial art&#8221; full-time at my own company.</p>\n\n\n\n<div class=\"wp-block-group has-background is-vertical is-nowrap is-layout-flex wp-container-core-group-is-layout-fc43baa9 wp-block-group-is-layout-flex\" id=\"desktop\">\n<h2 class=\"kt-adv-heading8545_22364b-5e wp-block-kadence-advancedheading\" id=\"work-environment\">Ray&#8217;s Work Environment</h2>\n\n\n\n<p>We asked Ray for a view into his development life and this is what he sent!</p>\n\n\n	<div class=\"hotspots-image-container\">\n		<img alt=\"Ray Mitchell&#039;s Desktop\" class=\"hotspots-image skip-lazy\" height=\"1922\" src=\"https://heropress.com/wp-content/uploads/2026/03/desktop-heropress-ray-mitchell-scaled-1.webp\" width=\"2560\" />\n	</div>\n\n\n\n\n<p class=\"has--font-size\">HeroPress would like to thank <a href=\"https://wpdrawattention.com/\">Draw Attention</a> for their donation of the plugin to make this interactive image!</p>\n</div>\n<p>The post <a href=\"https://heropress.com/essays/an-eighth-graders-dream-comes-true/\">An Eighth Grader&#8217;s Dream Comes True</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 25 Mar 2026 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Ray Mitchell\";s: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:20:\"Matt: Beautiful Hack\";s:7:\"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=151627\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"https://ma.tt/2026/03/beautiful-hack/\";s: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:542:\"<p class=\"wp-block-paragraph\">It&#8217;s bad, but it&#8217;s so good. <a href=\"https://snyk.io/articles/poisoned-security-scanner-backdooring-litellm/\">As you read this deep dive into the LiteLLM backdoor hack</a>, <a href=\"https://www.aikido.dev/blog/teampcp-deploys-worm-npm-trivy-compromise\">or this one</a>, it&#8217;s really just quite impressive. The use of <a href=\"https://docs.internetcomputer.org/building-apps/essentials/canisters\">ICP canisters</a>, wow. Just as an engineer, I&#8217;d love to meet the minds behind this code.</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, 25 Mar 2026 03:13: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: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: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:53:\"WordPress.org blog: WordPress 7.0 Release Candidate 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20229\";s:7:\"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/03/wordpress-7-0-release-candidate-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11493:\"<p class=\"wp-block-paragraph\">The first Release Candidate (“RC1”) 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 still under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it’s recommended to evaluate RC1 on a test server and site.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 RC1 can be tested using any of the following methods:</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-RC1.zip\">RC1 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>RC1</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.  No setup required – just click and go! </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>April 9, 2026</strong>. The full <a href=\"https://make.wordpress.org/core/2026/02/12/wordpress-7-0-release-party-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 RC1?</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>What’s new in WordPress 7.0</strong>? Check out the <a href=\"https://wordpress.org/news/2026/02/wordpress-7-0-beta-1/\">Beta 1 announcement</a> and <a href=\"https://make.wordpress.org/core/tag/dev-notes+7-0/\">WordPress 7.0 Developer Notes</a> for details and highlights.</p>\n\n\n\n<p class=\"wp-block-paragraph\">RC1 contains more than 134 updates and fixes since the Beta 5 release. You can browse the technical details for all issues addressed since Beta 5 using these links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/7.0?since=2026-03-12&amp;until=2026-03-24\">GitHub commits</a> since March 12, 2026</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=03%2F12%2F2026..03%2F24%2F2026&amp;milestone=7.0&amp;group=component&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Closed Trac tickets</a> since March 12, 2026</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">New Features since Beta 1</h3>\n\n\n\n<p class=\"wp-block-paragraph\">The release squad in conjunction with project leadership identified additional features that were not ready for beta 1 but are included in RC1 as supporting requirements for flagship features of the release.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://core.trac.wordpress.org/ticket/64730\">AI Connectors Screen</a> &#8211; A new admin screen for connecting AI providers to your site and an <a href=\"https://core.trac.wordpress.org/ticket/64791\">API for registering additional ones</a>.</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/75757\">The Command Palette</a> is now available via a <code>⌘K</code> or <code>Ctrl+K</code> shortcut in the admin bar.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">Want to look deeper into the details and technical notes for this release? These tickets and pull requests are just some of the latest updates:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/76700\">#GB-76700</a>: Client Side Media as plugin only</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/76722\">#GB-76722</a>: Add support for non-AI providers on Connector&#8217;s Screen</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/76736\">#GB-76736</a>: New activation hook to enable RTC by default</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/ticket/64904\">#64904</a>: <code>WP_ALLOW_COLLABORATION</code> constant for RTC</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/76704\">#</a><a href=\"https://github.com/WordPress/gutenberg/pull/76643\">GB-76704</a>: Increased polling intervals for RTC</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/76643\">#GB-76643</a>: Real Time Collaboration is opt-in by default</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/76460\">#GB-76460</a>: Toggle to turn RTC session notifications on/off</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/changeset/62046\">#62046</a>: Update PHP AI Client package to 1.3.1</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/76550\">#GB-76550</a>: Revisions: Show changed block attributes in sidebar</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/changeset/62067\">#62067</a>: Single config option to disable all LLM related features</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/ticket/63697\">#63697</a>: OPCache added to <code>Site Health &gt; Info &gt; Server</code></li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>The final release is on track for April 9, 2026.</strong> As always, a successful release depends on your confirmation during testing. So please download and test!</p>\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 help the world’s most popular open source web platform, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Help test this release</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 RC1 version is key to ensuring that the final release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important. 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.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What to test:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/test/2026/03/11/its-time-to-test-real-time-collaboration/\">Real Time Collaboration</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2026/02/27/call-for-testing-pattern-editing-and-content-only-interactivity-in-wordpress-7-0/\">Pattern Editing and content-only Interactivity</a></li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">If you encounter an 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\">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>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Test on your hosting platforms</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Hosting systems provide vital infrastructure for supporting WordPress and its users. Testing on hosting infrastructure ensures that WordPress and hosting systems are fully compatible, free of errors, optimized for the best possible user experience, and that updates roll out to customer sites without issue. Thank you to all <a href=\"https://make.wordpress.org/hosting/test-results/\">web hosts who test WordPress</a>!</p>\n\n\n\n<p class=\"wp-block-paragraph\">Want to set up testing on your hosting system? <a href=\"https://make.wordpress.org/hosting/test-results-getting-started/\">Get started with configuring distributed hosting tests here</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p class=\"wp-block-paragraph\">For plugin and theme authors, your products play an integral role in extending the functionality and value of WordPress for all users.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Thanks for continuing to test your themes and plugins with the WordPress 7.0 beta releases. With RC1, you’ll want to conclude your testing and update the <em>“Tested up to”</em> version in your <a href=\"https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/\">plugin’s readme file</a> to <code>7.0</code>. If you find compatibility issues, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forum</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives</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? Русский? 日本語? हिन्दी? বাংলা? मराठी? ಕನ್ನಡ?  You can <a href=\"https://make.wordpress.org/polyglots/handbook/translating/\">help translate WordPress into more than 100 languages</a>. This release milestone (RC1) marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 7.0 release cycle. However, strings will not be available for translation until RC2 later this week.</p>\n\n\n\n<h2 class=\"wp-block-heading\">An RC1 haiku</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><em>RC1 arrives</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>with momentum, sped up time</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>and jazz on the mind.</em></p>\n\n\n\n<p class=\"has-text-align-right wp-block-paragraph\"><em>Props to <a class=\"mention\" href=\"https://profiles.wordpress.org/4thhubbard/\"><span class=\"mentions-prefix\">@</span>4thhubbard</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/desrosj/\"><span class=\"mentions-prefix\">@</span>desrosj</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/jeffpaul/\"><span class=\"mentions-prefix\">@</span>jeffpaul</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/chaion07/\"><span class=\"mentions-prefix\">@</span>chaion07</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/audrasjb/\"><span class=\"mentions-prefix\">@</span>audrasjb</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/jorbin/\"><span class=\"mentions-prefix\">@</span>jorbin</a> for collaboration and review.</em></p>\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:\"Tue, 24 Mar 2026 19:32: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: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:\"\";}}}}}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:100:\"Open Channels FM: Bridging the Gaps: Why Multiple Decentralized Social Protocols Are Still Necessary\";s:7:\"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=2551031\";s:7:\"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:106:\"https://openchannels.fm/bridging-the-gaps-why-multiple-decentralized-social-protocols-are-still-necessary/\";s: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:168:\"In decentralized social networks, hope for one universal protocol is unrealistic; instead, building bridges and embracing diversity fosters innovation and connectivity.\";s: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, 24 Mar 2026 14:03:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:83:\"Open Channels FM: How to Prepare, Network, and Recharge During Business Conferences\";s:7:\"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=2551163\";s:7:\"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/how-to-prepare-network-and-recharge-during-business-conferences/\";s: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:\"In this episode, Bob and Cami chat about maximizing conference experiences, sharing tips on client communication, essential gear, avoiding burnout, and the importance of balance—plus some hilarious travel stories.\";s: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, 24 Mar 2026 13:45:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:16:\"Matt: WP.com MCP\";s:7:\"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=151570\";s:7:\"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/03/wp-com-mcp/\";s: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:395:\"<p class=\"wp-block-paragraph\">If you host your WordPress on <a href=\"https://wordpress.com/blog/2026/03/20/ai-agent-manage-content/\">WordPress.com your AI agent can now manage your entire site</a>, including updating posts or pages, making drafts, pretty much all the things you normally do with WordPress. Hook this up to your OpenClaw, Hermes, ChatGPT, Claude, Grok, whatever and have fun!</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, 23 Mar 2026 21:57: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: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: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:27:\"Matt: Miriam’s Sweet Site\";s:7:\"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=151598\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://ma.tt/2026/03/miriam/\";s: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:570:\"<p class=\"wp-block-paragraph\">Long-time WordPresser <a href=\"https://miriamschwab.me/\">Miriam Schwab just rebuilt her WordPress site with Claude Code and it looks amazing</a>. Go check it out, this is what is possible now with proper prompting. I&#8217;d love to see a WordCamp keynote from Miriam on her process in this. (And she&#8217;s doing this while missiles are flying overhead. Wow.)</p>\n\n\n\n<p class=\"wp-block-paragraph\">Update: <a href=\"https://miriamschwab.me/i-didnt-think-this-site-would-get-much-attention-ever/\">She blogged a bit about the process</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, 22 Mar 2026 21:41: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s: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: Bay Lights are 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:23:\"https://ma.tt/?p=151572\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"https://ma.tt/2026/03/bay-relighting/\";s: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:3092:\"<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-151574\" height=\"340\" src=\"https://i0.wp.com/ma.tt/files/2026/03/TBL_Longview-1024x576.jpg?resize=604%2C340&#038;quality=89&#038;ssl=1\" width=\"604\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Tonight, a project very near and dear to my heart, the <a href=\"https://illuminate.org/projects/thebaylights/\">Bay Lights in San Francisco</a>, are officially re-lighting after a three-year hiatus. It&#8217;s been an incredible journey getting here. I literally mortgaged my apartment in 2013 to help fund them the first time around, and it&#8217;s such an honor to see them relit now with better technology and new programming from the amazing artist <a href=\"https://villareal.net/\">Leo Villareal</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Whether you&#8217;re looking down at the lights from a penthouse or top office, or up at them from the water along the Embarcadero, this is truly an art project that illuminates the soul of everyone in San Francisco, radically accessible and open.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I&#8217;ve heard they&#8217;re still raising around 500k to close out the project. You <a href=\"https://sif.illuminate.org/\">can dedicate a light here for someone special</a>. I&#8217;m going to do one to <a href=\"https://ma.tt/2016/04/in-memoriam-chuck-mullenweg/\">honor my father, who passed in 2016</a>. If you&#8217;d like to be part of San Francisco&#8217;s boom loop and have a pleasant twinkle of enlightenment every time you see the bridge, I encourage you to donate as well!</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you live somewhere with a view of the bridge, think of it as buying a piece of art you&#8217;ll enjoy every night, and also having that warm feeling of being part of making San Francisco more beautiful for everyone.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I&#8217;m on the board of Illuminate, which only has two full-time employees, and I&#8217;ve never seen another non-profit generate so much public joy and benefit with so few people. They&#8217;re also behind <a href=\"https://illuminate.org/projects/golden-mile-project/\">the Golden Mile</a> and the <a href=\"https://illuminate.org/venues/golden-gate-bandshell/\">live music at the Golden Gate Bandshell</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Please consider <a href=\"https://sif.illuminate.org/\">making a one-time donation of a light, which is anywhere from $100 to $2,500</a>, or <a href=\"https://illuminate.org/donate/#donate\">become a recurring member of the Illuminate Tribe</a>, or if you are really part of making San Francisco better consider <a href=\"https://illuminate.org/donate/#illuminary\">being an Illuminary at 50k/yr</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Also, thank you to all the <a href=\"https://wordpress.org/\">WordPress</a> community members who have done so much to support this project and help them fundraise and improve their website. It&#8217;s such a great example of the WordPress open source spirit and ethos.</p>\n\n\n\n<p class=\"wp-block-paragraph\">San Francisco is so back! Let&#8217;s go!</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, 21 Mar 2026 02:08:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:23:\"Matt: Introducing Me.sh\";s:7:\"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=151564\";s:7:\"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/03/mesh/\";s: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:662:\"<p class=\"wp-block-paragraph\">Very excited to share that the <a href=\"https://ma.tt/2025/06/clay/\">Clay.earth team that joined Automattic last year</a> is re-launching under a new, <a href=\"https://me.sh/stories/mesh\">very cool name and brand: Mesh</a>. Imagine something that joins you (me) to everyone you&#8217;re connected to. It&#8217;s going to be a very important layer of the distributed identity and social work we&#8217;re doing. It&#8217;s an amazing app <a href=\"https://me.sh/\">you should try out if you haven&#8217;t yet</a>. Available on the web, <a href=\"https://me.sh/start\">MacOS, Windows, iOS, and even the Vision Pro</a>. Stunning design.</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, 20 Mar 2026 21:32: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: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:40:\"Gary: Introducing claudaborative-editing\";s:7:\"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:25:\"https://pento.net/?p=5656\";s:7:\"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://pento.net/2026/03/20/introducing-claudaborative-editing/\";s: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:5159:\"<p class=\"wp-block-paragraph\">Human editor&#8217;s note: The post below was written by Claude Code. I personally don&#8217;t use LLMs to write for me, but I figured I&#8217;d make an exception just this once. Using entirely LLM-generated content isn&#8217;t a workable approach to writing good copy, but I&#8217;m interested in seeing how we can use these tools to interact with and improve the writing process!</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"wp-block-paragraph\">I&#8217;ve been using Claude Code for more and more of my daily work, and one thing that&#8217;s been bugging me is the gap between &#8220;Claude wrote some text&#8221; and &#8220;that text is on my blog.&#8221; There&#8217;s always a manual copy-paste step, formatting fixups, and the general friction of moving content between two worlds. So I built a bridge.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://github.com/pento/claudaborative-editing\">claudaborative-editing</a> is an MCP server that lets Claude Code collaboratively edit WordPress posts in real time, right alongside you in the Gutenberg block editor. You open a post in your browser, Claude opens the same post from the terminal, and you both edit together — changes sync live via WordPress&#8217;s collaborative editing protocol.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In fact, this very post is being written by Claude, using the tool. It&#8217;s claudaborative-editing all the way down.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How it works</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 introduced real-time collaborative editing, built on <a href=\"https://yjs.dev/\">Yjs</a> — the same CRDT technology that powers tools like Figma and Notion. claudaborative-editing speaks this protocol natively: it maintains a Yjs document that mirrors your post, syncing changes back and forth with WordPress via HTTP polling. The CRDT handles merging, so simultaneous edits from you and Claude just work — no conflicts, no overwrites.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Getting started takes about 30 seconds:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>npx claudaborative-editing setup</code></pre>\n\n\n\n<p class=\"wp-block-paragraph\">The setup wizard validates your WordPress credentials and gives you the <code>claude mcp add</code> command to register the server. After that, Claude Code can connect to your site and start editing.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What Claude can do</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The server exposes a full set of block-editing tools. Claude can list and open posts, read the current block structure, insert and remove blocks, update text content and attributes, move blocks around, and save. It works at the block level — the same granularity Gutenberg uses — so edits are precise and merge-safe.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There&#8217;s a nice touch, too: when Claude writes or updates text, the changes stream into the editor character by character, like watching someone type. It&#8217;s a small thing, but it makes the collaboration feel real.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You can also see Claude show up in the collaborators list — it registers its presence through the same awareness protocol that shows human editors, so you know when it&#8217;s active on a post.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What&#8217;s next</h2>\n\n\n\n<p class=\"wp-block-paragraph\">While writing this post, I ran into a few things I wished the tool could do — so I filed some issues to track them:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/pento/claudaborative-editing/issues/1\">Media upload and image insertion</a> — I can write the text for a blog post, but I can&#8217;t include screenshots or diagrams yet. Being able to upload and insert images would make for much more complete drafts.</li>\n\n\n\n<li><a href=\"https://github.com/pento/claudaborative-editing/issues/2\">Post metadata</a> — categories, tags, excerpts, featured images, and publication status. Right now a human still needs to handle all of that before hitting publish.</li>\n\n\n\n<li><a href=\"https://github.com/pento/claudaborative-editing/issues/3\">Closing a post without disconnecting</a> — currently the only way to stop editing a post is to disconnect from WordPress entirely, which means you need to reconnect if you want to open a different post.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">The tool is open source and available on <a href=\"https://github.com/pento/claudaborative-editing\">GitHub</a>, and you can install it right now from npm with <code>npx claudaborative-editing setup</code>. You&#8217;ll need WordPress 7.0 or later with collaborative editing enabled — flip the switch under Settings → Writing, create an application password, and you&#8217;re good to go.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I&#8217;m looking forward to seeing what people do with it. If you try it out, I&#8217;d love to hear how it goes — file issues, send PRs, or just let me know. Happy claudaborating! <img alt=\"🤝\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f91d.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:\"Fri, 20 Mar 2026 05:41:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Gary\";s: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:68:\"Open Channels FM: Open Channels FM Announces the Launch of Channel 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2551284\";s:7:\"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:75:\"https://openchannels.fm/open-channels-fm-announces-the-launch-of-channel-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:152:\"Open Channels FM introduces Channel 4, a new podcast platform for diverse discussions, fostering creativity and authenticity beyond existing categories.\";s: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, 19 Mar 2026 14:05:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:158:\"WordCamp Central: WordPress Campus Connect Jinja 2025 Recap: Piloting Africa’s First and Largest Campus Connect Program Across 12 Campuses in Eastern Uganda\";s:7:\"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:40:\"https://central.wordcamp.org/?p=13899712\";s:7:\"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:179:\"https://central.wordcamp.org/news/2026/03/wordpress-campus-connect-jinja-2025-recap-piloting-africas-first-and-largest-campus-connect-program-across-12-campuses-in-eastern-uganda/\";s: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:32575:\"<h1 class=\"wp-block-heading\"><strong>Bringing WordPress and Web Design Skills to Over 1,200 Students Across Eastern Uganda</strong><br /></h1>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-356\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_5887-1024x545.jpg\" /><figcaption class=\"wp-element-caption\">WPCC Jinja at Mpumudde High School Jinja</figcaption></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Summary</h2>\n\n\n\n<p>Over a five-month period (with a two-month holiday/national elections  break) the WordPress Jinja community successfully piloted <strong>Africa’s first and largest WordPress Campus Connect program</strong>, reaching <strong>12 schools and institutions across Eastern Uganda</strong>. Through hands-on workshops, mobile ICT labs, and student-led digital clubs, the initiative introduced <strong>1,293 students and 81 educators</strong> to WordPress, open source, and practical digital skills. Designed to bring technology education directly into classrooms where opportunities are often limited, the program empowers young people to explore digital careers, build online portfolios, and connect with the global WordPress community. Despite a two-month holiday and national election break, along with national exams and national teacher strikes, the first edition of Campus Connect Jinja demonstrated how open-source learning and imparting of WordPress and web design skills can grow sustainable student communities and inspire the next generation of digital creators.<br /><br /><strong>Why Campus Connect?</strong></p>\n\n\n\n<p>While WordCamps and meetups often bring together developers, designers, and professionals already working in technology, Campus Connect focuses on students who are just beginning their digital journeys. It creates opportunities for young people to encounter WordPress early, discover what open source means, and begin building skills that can shape their future.</p>\n\n\n\n<p>The launch of Campus Connect in Jinja builds on years of student-centered initiatives already taking place within the local WordPress community. From <strong>free web design hackathons for students</strong> to <strong>youth-focused workshops held alongside WordCamps</strong>, our local organizers have steadily worked to make technology education more accessible.</p>\n\n\n\n<p>Campus Connect represents the next step in that journey: a structured outreach program that connects schools directly with the global WordPress ecosystem while cultivating the next generation of open-source contributors.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-360\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_5073-1024x768.jpg\" /><figcaption class=\"wp-element-caption\">WPCC Jinja at Jinja Senior Secondary School</figcaption></figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Background</strong></h2>\n\n\n\n<p>When our WordPress Jinja community concluded <strong>WordCamp Jinja 2025 (our 4th WordCamp)</strong> hosted at Jinja Senior Secondary School, one moment stood out clearly: the enthusiasm of the students who had attended and participated actively. Their curiosity about WordPress, web publishing, and open-source technology revealed a powerful opportunity. What we had witnessed should not remain a one-time experience. From that realization, the idea of bringing the <strong>WordPress Campus Connect initiative to Jinja</strong> was born.</p>\n\n\n\n<p>Campus Connect is designed to bring WordPress directly into classrooms and learning spaces where opportunities in technology are often limited. The program focuses on introducing students to open source while equipping them with practical digital skills that can shape their future careers.</p>\n\n\n\n<p>Through the initiative, the WordPress Jinja community set out to:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Introduce WordPress in classrooms where opportunities in technology are often limited</li>\n\n\n\n<li>Empower young people with hands-on digital skills that prepare them for careers</li>\n\n\n\n<li>Build sustainable student-led communities through clubs and ongoing activities</li>\n\n\n\n<li>Connect local talent with global contributors, creating new opportunities for mentorship and collaboration</li>\n</ul>\n\n\n\n<p>By meeting students where they are on their campuses and within their schools, Campus Connect ensures that WordPress communities will continue to grow long after the first workshops are completed.</p>\n\n\n\n<p>However, the vision quickly revealed a significant challenge. Many schools in and around Jinja lack access to functioning computer laboratories or digital infrastructure. Without computers, students would have little chance to explore WordPress, learn web publishing, or participate in the open-source ecosystem.</p>\n\n\n\n<p>Determined not to leave anyone behind, the WordPress Jinja community partnered with local ecosystem partners that could provide <strong>mobile ICT laboratories and laptops</strong>. With these resources, the community launched a five-month outreach program that brought WordPress training directly to schools across Eastern Uganda both with in-house labs and our mobile ICT labs from partners.</p>\n\n\n\n<p>By the end of the program, <strong>more than 1,200 students and educators across twelve institutions</strong> had participated, including schools serving learners with disabilities.</p>\n\n\n\n<h1 class=\"wp-block-heading\"><strong>The Jinja Campus Connect Model</strong></h1>\n\n\n\n<p>Each Campus Connect visit followed a structured learning model designed to combine <strong>technical training, digital literacy, and career exploration</strong>.</p>\n\n\n\n<p>All sessions included:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Introduction to WordPress and the open-source ecosystem</li>\n\n\n\n<li>Hands-on website creation and content publishing</li>\n\n\n\n<li>Digital storytelling and blogging</li>\n\n\n\n<li>Responsible digital citizenship and online safety</li>\n\n\n\n<li>Career pathways including freelancing, entrepreneurship, and digital work</li>\n</ul>\n\n\n\n<p>Every visit concluded with the formation of a <strong>Student-Led WordPress and Digital Skills Club</strong> within the host institution.</p>\n\n\n\n<p>These clubs serve as satellite communities connected to the <strong>WordPress Jinja Meetup</strong>, ensuring that the learning continues long after the workshops end. Over time, the clubs will become fully integrated within their schools according to institutional guidelines and eventually organize their own student-led WordPress activities.</p>\n\n\n\n<p>Through these clubs, Campus Connect plants the seeds of sustainable local communities that can continue learning, collaborating, and contributing to open source.</p>\n\n\n\n<p><a href=\"https://photos.app.goo.gl/TJpYJJDtDVQC47dCA\">Google Photos Link:</a></p>\n\n\n\n<h1 class=\"wp-block-heading\"><strong>Our Journey of Impact: Campus by Campus Highlights</strong></h1>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>1. Macedonian Vocational Institute</strong></h2>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-4 is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-364\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_4594-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-365\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_4600-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-363\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_4813-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-362\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_5012-1024x441.jpg\" /></figure>\n<figcaption class=\"blocks-gallery-caption wp-element-caption\">Macedonian Vocational Institute, Jinja &#8211; 102 Students and 5 Teachers &#8211; 4th October 2025</figcaption></figure>\n\n\n\n<p>At Macedonian Vocational Institute, the session centered on the practical value of WordPress for vocational and entrepreneurial careers. Students explored how websites and online portfolios can help artisans, technicians, and young professionals present their skills, attract clients, and grow their businesses. Through hands-on demonstrations, participants were introduced to web design, content creation, and the basics of WordPress development, while also learning how open-source tools can create opportunities beyond the classroom. A student WordPress club was further strengthened during the visit to support continued practice and portfolio building.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>2. Jinja Senior Secondary School</strong></h2>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-4 is-cropped wp-block-gallery-2 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-371\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_5073-1-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-373\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_5118-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-374\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_5314-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-372\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_5601-1024x768.jpg\" /></figure>\n<figcaption class=\"blocks-gallery-caption wp-element-caption\">Jinja SSS &#8211; 253 Students and 6 Teachers &#8211; 9th and 11th October 2025</figcaption></figure>\n\n\n\n<p>Jinja Senior Secondary School, which hosts more than 5,000 students, served as the launch point for the Campus Connect outreach program. Across two engagement sessions, an introductory session and a deeper hands-on session, students were introduced to WordPress fundamentals, website creation, blogging, and the wider culture of open-source collaboration. They explored web design, digital storytelling, and creative publishing while also gaining exposure to WordPress development concepts. The visit concluded with the establishment of a student WordPress satellite community that will eventually become a student club, led by student coordinators from the school leadership and Science and ICT Club, who will guide blogging activities and peer learning within the school community.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>3. Mpumudde High School (Horizon Campus) Jinja</strong></h2>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-4 is-cropped wp-block-gallery-3 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-377\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_5805-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-379\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_5845-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-378\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_5864-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-376\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_5887-1-1024x545.jpg\" /></figure>\n<figcaption class=\"blocks-gallery-caption wp-element-caption\">MHS Jinja -169 Students and 8 Teachers &#8211; 23rd October 2025</figcaption></figure>\n\n\n\n<p>The Campus Connect session at Mpumudde High School focused strongly on digital storytelling and youth expression. Students examined how WordPress can be used to publish ideas, document school activities, and amplify student voices in meaningful ways. Alongside practical work in creating blog posts and structuring pages, participants were introduced to the basics of website creation and open-source participation. The session encouraged students to see digital platforms not only as technical tools, but also as spaces for creativity, identity, and shared learning. A student club was formed to carry this momentum forward.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>4. Gloryland Christian College, Jinja</strong></h2>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-4 is-cropped wp-block-gallery-4 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-385\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_6219-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-382\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_6277-1024x589.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-383\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_6312-1024x618.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-384\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_6331-1024x545.jpg\" /></figure>\n<figcaption class=\"blocks-gallery-caption wp-element-caption\">GCC Jinja &#8211; 59 Students and 4 Teachers &#8211; 31st October 2025</figcaption></figure>\n\n\n\n<p>Students at Gloryland Christian College engaged in a session that combined technical learning with conversations about responsible digital participation. Alongside hands-on website creation, they explored blogging, online publishing, and the importance of credibility, ethics, and thoughtful communication in digital spaces. The training introduced students to the possibilities of WordPress while also encouraging them to think critically about how content is created and shared. The visit concluded with the formation of a student WordPress club to guide continued learning and practice.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>5. Royal Secondary School, Buwenge</strong></h2>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-4 is-cropped wp-block-gallery-5 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-386\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_6407-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-388\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_6415-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-389\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_6442-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-387\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_6523-1024x768.jpg\" /></figure>\n<figcaption class=\"blocks-gallery-caption wp-element-caption\">Royal SS Jinja 61 Students and 6 Teachers &#8211; 4th November 2025</figcaption></figure>\n\n\n\n<p>At Royal Secondary School, the workshop emphasized the role of WordPress in school communication and community storytelling. Students explored how websites can be used to highlight school initiatives, student clubs, and local projects while learning the foundations of web publishing and site structure. The session connected digital skills with the power of sharing local experiences and preserving community narratives online. By the end of the visit, students had begun to see WordPress as a practical tool for both expression and visibility, and a student WordPress club was established to continue the work.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>6. Jinja Tech Hub</strong></h2>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-4 is-cropped wp-block-gallery-6 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-394\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_6641-1024x538.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-392\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_6643-1024x638.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-393\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_6644-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-391\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_6776-1024x719.jpg\" /></figure>\n<figcaption class=\"blocks-gallery-caption wp-element-caption\">Jinja Tech Hub &#8211; 47 Students and 5 Instructors &#8211; 18th November 2025</figcaption></figure>\n\n\n\n<p>The engagement at Jinja Tech Hub leaned into entrepreneurship, freelancing, and digital innovation. Participants explored how WordPress can be used to create business websites, showcase services, and build strong professional portfolios. The session also introduced broader ideas around WordPress development, site structure, and the value of open-source skills in the digital economy. For many participants, the training connected technical knowledge with real pathways into work, enterprise, and self-employment.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>7. Busoga Light College, Jinja</strong></h2>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-4 is-cropped wp-block-gallery-7 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-396\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_6803-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-397\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_6805-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-398\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_6815-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-399\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_6821-1024x768.jpg\" /></figure>\n<figcaption class=\"blocks-gallery-caption wp-element-caption\">BLC Jinja &#8211; 63 Students and 10 Teachers &#8211; 6th December 2025 and follow up holiday visit on 11th January</figcaption></figure>\n\n\n\n<p>Busoga Light College hosted an extended Campus Connect engagement that allowed students to move beyond introduction into deeper exploration. Participants learned how to organize content, build digital portfolios, and manage simple websites while strengthening their understanding of WordPress as both a technical and creative platform. Teachers took an active part in the sessions, reinforcing the school’s support for digital skills development. A follow-up visit in January created space for mentorship and helped the newly established WordPress club continue applying the skills students had begun to develop.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Phase Two</strong></h3>\n\n\n\n<p>After the holiday and national election break, the Campus Connect initiative resumed in February 2026, following a national mandate from the Government of Uganda for schools to re-open on 10th February due to elections in January. This second phase extended the program’s reach to additional institutions across Eastern Uganda and brought the WordPress learning experience to even more students.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>8. Nsuube SDA Secondary School</strong></h2>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-4 is-cropped wp-block-gallery-8 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-402\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_7312-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-403\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_7319-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-404\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_7367-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-401\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_7445-1024x886.jpg\" /></figure>\n<figcaption class=\"blocks-gallery-caption wp-element-caption\">Nsuube SDA Jinja &#8211; 126 Students and 6 Teachers &#8211; 12th February 2026</figcaption></figure>\n\n\n\n<p>At Nsuube SDA Secondary School, students were introduced to WordPress as both an educational and creative platform. The session highlighted how blogging, digital storytelling, and personal portfolios can support academic work while also helping students share their ideas with wider audiences. Through practical demonstrations, participants learned the basics of website creation and content publishing in ways that connected directly to school projects and self-expression. The visit concluded with the formation of a student club that will continue practicing and building on these foundations.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>9. Kaliro High School</strong></h2>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-4 is-cropped wp-block-gallery-9 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-405\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_7453-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-407\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_7458-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-408\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_7459-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-406\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_7472-1024x768.jpg\" /></figure>\n<figcaption class=\"blocks-gallery-caption wp-element-caption\">Kaliro High School &#8211; 152 Students and 12 Teachers &#8211; 21st February 2026</figcaption></figure>\n\n\n\n<p>Kaliro High School recorded one of the largest turnouts during the second phase of the program. Students showed strong enthusiasm for blogging and digital storytelling, especially around the idea of sharing school activities, community experiences, and student perspectives online. The workshop combined practical page-building exercises with broader discussions about digital literacy and the growing importance of online communication in education and everyday life. A student club was established to support continued collaboration and peer learning after the visit.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>10. Jinja North Secondary School (Butembe Heritage Campus)</strong></h2>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-4 is-cropped wp-block-gallery-10 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-409\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/2.RAW-01.COVER_-1024x771.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-411\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_7875-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-412\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_7900-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-410\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_8065-1024x460.jpg\" /></figure>\n<figcaption class=\"blocks-gallery-caption wp-element-caption\">JNOSS &#8211; 131 Students and 8 Teachers &#8211; 23rd February 2026</figcaption></figure>\n\n\n\n<p>At Jinja North Secondary School, the sessions focused on hands-on website creation and the wider opportunities that digital skills can unlock. Students explored how WordPress knowledge can connect to freelancing, online services, and entrepreneurship, while teachers participated actively in discussions about integrating digital learning into the school environment. The training positioned WordPress not just as a publishing tool, but as a gateway to practical and marketable skills. A student WordPress club was formed to sustain interest and continued engagement.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>11. H.E.L.P International Vocational Institute, Jinja</strong></h2>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-4 is-cropped wp-block-gallery-11 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-414\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_8098-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-418\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_8375-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-417\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_8418-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-415\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_8648-1024x683.jpg\" /></figure>\n<figcaption class=\"blocks-gallery-caption wp-element-caption\">HELP Jinja &#8211; 53 Students and 8 Teachers &#8211; 25th February 2026</figcaption></figure>\n\n\n\n<p>At H.E.L.P International Vocational Institute, the training highlighted WordPress as a professional tool for vocational graduates and young entrepreneurs. Students explored how websites can be used to present technical skills, market services, and create portfolios that speak to real-world opportunities. The session blended practical exercises with discussions about visibility, client outreach, and digital professionalism, helping participants connect their vocational training with the demands of an increasingly online economy.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>12. C.H.I.M.E Secondary School and Vocational Institute</strong></h2>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-4 is-cropped wp-block-gallery-12 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-420\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_8816-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-422\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_8855-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-421\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_8962-1024x768.jpg\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-419\" src=\"https://events.wordpress.org/campusconnect/2025/jinja/files/2026/03/IMG_9091-1024x758.jpg\" /></figure>\n<figcaption class=\"blocks-gallery-caption wp-element-caption\">CHIME Jinja &#8211; 79 Students and 5 Teachers &#8211; 28th February 2026</figcaption></figure>\n\n\n\n<p>The final Campus Connect engagement took place at C.H.I.M.E Secondary School and Vocational Institute, where students explored WordPress as a bridge between academic learning and vocational development. The session covered blogging, portfolio creation, and communication platforms that can support both school-based and practical career pathways. It also emphasized collaboration, creativity, and digital presence as essential skills for young people preparing for the modern world. A student WordPress club was established to carry the program forward within the school.</p>\n\n\n\n<h1 class=\"wp-block-heading\"><strong>A Synergy of Local Community Efforts: </strong></h1>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Lessons and Reflections</strong></h2>\n\n\n\n<p>Like many long term community-driven initiatives in Africa, the Campus Connect program encountered several logistical challenges.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Nationwide teachers’ strikes in 2025 disrupted school schedules</li>\n\n\n\n<li>National examination periods and elections</li>\n\n\n\n<li>School timetable changes were sometimes communicated late</li>\n\n\n\n<li>Photography volunteers, mostly university students experienced delays in compiling and editing event documentation</li>\n</ul>\n\n\n\n<p>Despite these challenges, the initiative continued successfully thanks to the dedication of community volunteers and partners.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Acknowledgement and Appreciation</strong></h2>\n\n\n\n<p>The success of our Campus Connect event series reflects the strength of collaboration within both the local and global WordPress ecosystems. We extend our gratitude to the <strong>Global WordPress Campus Connect sponsors</strong>, whose continued support for open source and education makes initiatives like this possible.</p>\n\n\n\n<p>We also thank the local ecosystem partners in Jinja who have continuously worked with our WordPress Jinja Community and whose non-financial support and collaboration enabled the program to reach students across Eastern Uganda; Rotary Club of Jinja City, Hello World Africa, Xerus, World Educare Network for mobilizing schools through their partner networks, Tech Reach Africa for providing a mobile ICT laboratory, GDG Cloud Jinja and other local technology communities for technical expertise and mentorship, Community volunteers, educators, and school administrators.</p>\n\n\n\n<p>Because of this collective effort, students who might otherwise have been excluded from digital opportunities gained access to tools, knowledge, and skills that many around the world now consider a fundamental part of modern education.</p>\n\n\n\n<p>By meeting students where they are within their schools and communities Campus Connect ensures that the WordPress ecosystem continues to grow, inspiring the next generation of creators, innovators, and open-source contributors.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>The Road Ahead: What’s Next</strong></h2>\n\n\n\n<p>Following the successful and massive pilot of Campus Connect Jinja, we will focus on increasing sustainability, formalizing and onboarding the student communities/clubs that were formed and expanding the regional WordPress ecosystem. With more than 1,200 students and about 100 educators introduced to WordPress and open source, the goal now is to continue the momentum and build long-term learning pathways for students and educators and create bridges between them and the general local WordPress community and opportunities.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Supporting and Formalizing Active Student WordPress Clubs</strong></h2>\n\n\n\n<p>The student WordPress and digital skills clubs established during the Campus Connect visits will now be gradually fomalized and onboarded according to the by-laws within their respective schools as well as onboarded officially through the Student Club program with their student leaders to be able to optionally organize their own events. For now, these clubs each with their own leadership and faculty support will act as <strong>satellite communities of the WordPress Jinja Meetup</strong>, supporting continued learning, student-led workshops, blogging initiatives, and participation in the wider WordPress ecosystem.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Upcoming Jinja events</strong></h2>\n\n\n\n<p>The next major event for the Jinja community will be <strong>WordCamp Jinja 2026 tentatively happening in September 2026</strong> led by Joan Namunina, co-organizer from our WordPress Jinja Meetup, where many of the students, educators, and partners involved in Campus Connect are expected to reconnect, share their experiences and continue building the future of open source in Eastern Uganda.</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, 19 Mar 2026 13:10:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Mohammed Kateregga\";s: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:91:\"Open Channels FM: Building Trust at Scale and Navigating Agency Challenges in the Age of 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:34:\"https://openchannels.fm/?p=2551086\";s:7:\"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:98:\"https://openchannels.fm/building-trust-at-scale-and-navigating-agency-challenges-in-the-age-of-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:206:\"In this episode, Adam and Marc discuss agency challenges in digital marketing, focusing on AI\'s impact, client expectations, and the importance of communication and efficiency in managing multiple websites.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 19 Mar 2026 11:42:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:96:\"WPTavern: #209 – Simon Pollard on Navigating the New Normal for WordPress Community and 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=203117\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"https://wptavern.com/podcast/209-simon-pollard-on-navigating-the-new-normal-for-wordpress-community-and-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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:61768:\"<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, trying to navigate the new normal for WordPress community and events.</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 Simon Pollard.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Simon has been building with WordPress for many years. Originally from Devon in England, he&#8217;s worked as a professional web developer across locations, eventually landing at Illustrate Digital, where he&#8217;s been for six years.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Simon&#8217;s not just a coder. He&#8217;s been deeply involved in the WordPress community, not only organising, but helping to grow the Bristol WordPress Meetup from a casual get together in a pub, to a thriving, officially backed event with dozens of regular attendees.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Like many in the WordPress ecosystem, Simon wears multiple hats. He&#8217;s a musician, a devoted dad, and an accidental community leader who found himself at the heart of local WordPress organising. But COVID-19 changed all that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In today&#8217;s episode, Simon explains what happened to WordPress Meetups during and after the pandemic. How vibrant communities fizzled out. How hard it was to bring people back. And the new challenges of connecting when traditional social media platforms no longer bring everyone together.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Simon talks about his own journey, how he paused on events, shifted his social life to music, and struggled to hand the Meetup keys to new organisers. Eventually, a call from an old friend drew him back and he was faced with the new reality. Smaller groups, fractured channels, and the question of how to keep the in-person spirit of WordPress alive.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We get into the irreplaceable value of real life connection, the warmth in the room, and the need to rethink what gets people to in-person events now. Is it hybrid events? Perhaps it&#8217;s music? Something beyond pure WordPress talks? We discuss what&#8217;s been lost, what still matters, and what it might take to build the new era of WordPress community in a distracted, always connected, world.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;re curious about the future of WordPress Meetups, if you felt the ebb and flow of community during the past few years, or if you just want to know how to find your people again, 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. Simon Pollard.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I am joined on the podcast by Simon Pollard. Hello Simon.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:42] <strong>Simon Pollard:</strong> Hello Nathan.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:43] <strong>Nathan Wrigley:</strong> Very nice to chat. Simon and I have met for the first time, just sort of 10 minutes ago. We&#8217;ve had a little bit of a chat. And as is so often the case, Simon has a musical instrument in the background. I don&#8217;t know what that is, but there&#8217;s definitely a thing there. WordPressers often have musical instruments.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:57] <strong>Simon:</strong> There&#8217;s more behind me as well. And randomly, I&#8217;ll bring in another fact, so I&#8217;m in a very casual band of predominantly mid forties internet developing type people. And, yeah, we&#8217;re all the same, we all play instruments. And randomly we all, without being connected in any way, can work in the same one building in Bristol, which is co-working in individual offices and we all found out we&#8217;re all in the same building. And that wasn&#8217;t how we met.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:21] <strong>Nathan Wrigley:</strong> I think probably anybody listening to this has figured out by your accent that you&#8217;re from the UK. And you mentioned Bristol just there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:27] <strong>Simon:</strong> Well, Brizzle if I&#8217;m going to be correct.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:29] <strong>Nathan Wrigley:</strong> Right at the top of the podcast, we typically ask the guests to just give us a little potted bio, a moment or two just telling us who you are. And as it&#8217;s a WordPress podcast, just give us your background with WordPress, I guess, as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:40] <strong>Simon:</strong> Yeah, well, I&#8217;m from Devon originally, which the English people will pick up on the accent potentially. I try to hide that away, but every now and again a little bit of farmer will come out and it&#8217;ll be oh, argh. And then, yeah, so I was born in Devon, moved away into to Cheltenham, been to Cardiff and then ended up in Bristol and worked at various places amongst all of them.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Bristol was where I finally got my kind of proper web job, an actual proper official web job. And the first company I started used WordPress as one of the platforms, and that&#8217;s from where I started off my kind of professional career. Moved around a few places since then as developers do, but always kind of staying in the area. And then currently, I am now at Illustrate Digital. Been there for six years, joined at the start of 2020, so that was an interesting progression, we&#8217;ll cover that later.</p>\n\n\n\n<p class=\"wp-block-paragraph\">During my time in Bristol, it was someone else who originally raised the idea of a Meetup for of WordPress devs to kind of meet up and have a chat. So myself and a few others met up with this one guy called Henry, and we just met at the pub, sat around a table and had a chat and said, what are you doing? What do you need help with? What would we like to talk about?</p>\n\n\n\n<p class=\"wp-block-paragraph\">And it kind of progressed from being, so we had a few more kind of casual chats, managed to grow. I think there was about six of us met originally and we kind of grew a bit and then said, oh, should we try doing like talks and making it a bit more official? So we progressed onto that. Struggled to find speakers, which I think is the story of absolutely every Meetup is find someone to talk. So I ended up doing a lot of talks myself, which I didn&#8217;t mind, but there was only so many times I can involve cats and WordPress together in the same thing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then it grew a bit. The key point for me is we took on someone who was a project manager by trade, who was also a developer. And they created a Trello board, and then suddenly we got organised. And I don&#8217;t know how, we kind of reached out, I remember now as I&#8217;ve just literally spoken to Jenny Wong who works over at Human Made, and she was assisting and she said, you know, is there anything I can do?</p>\n\n\n\n<p class=\"wp-block-paragraph\">And she came over, I was working in Bath at the time. So she came over in person, back in the day when you met in person. Came over to Bath and we sat down and had a coffee and a chat, and she gave me all the tips and advice she could to kind of help build the Meetup and get it bigger and try and get things working.</p>\n\n\n\n<p class=\"wp-block-paragraph\">She also helped us get official backing. So we got the WordPress official backing for the Meetup, which is brilliant because that gave us funds. That allowed us to start hiring venues which is brilliant. So all the worry of paying for kind of costs or anything for the venues got covered by WordPress. We still reached out for sponsors, and the sponsors gave us money for food. Food is obviously a good tool to get people in as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It just kind of grew. And I&#8217;m not sure what made it grow or how it grew, but it just kind of fed through. But this was back in the day when social media was less run by maniacs and you were happy to post on Twitter and Facebook and it kind of grew from that. I already had quite a good Twitter following, so I just kind of shouted there all the time and tried to pull in everybody and anyone who isn&#8217;t at all connected to the internet.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We went to Facebook, I got a friend of mine, was a bit of a social media guy, he set us up several kind of media accounts and added his advice. And then, yeah, just kind of moved on, and we were getting in a good crowd. Towards the end of 2019 into 2020 we were getting say 30, 40 people coming along to the Meetup, which is really impressive.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So we&#8217;d fill out a room, we&#8217;d get catering in, that would all get done. We had an account, we were that kind of organised, so we had an actual bank account to put our sponsorship money in. We were in profit at one point. So it was crazy. It was just going, yeah, going really well. Lovely kind of gathering, it was just a nice thing. We ran monthly. The organising team grew to about six or seven of us, because there was so much to do. So there&#8217;s plenty of us involved.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And yeah, it was going great, all going along lovely. 2020 came about and then suddenly COVID, and that was it. It kind of stopped because it had to, and none of us had the appetite to do the video side of things. We didn&#8217;t really have the technology, or the means, and it was just too much with everything else that was going on in the world. So it kind of petered out, and as did my involvement in the community, as much as in person involvement kind of faded out.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I looked back and, yeah, the last meetup that I attended was in 2020, before just the other week when I&#8217;ve gone back, but like the last one was 2020 was the last, looking at my logs, the last Meetup I attended in person, which is quite sad to look back. But this all changed around. I&#8217;ve gone very off topic of what I actually do. I think I just went into this hole.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:08:49] <strong>Nathan Wrigley:</strong> Oh, no, it&#8217;s great because obviously what the listener doesn&#8217;t know is that you and I already know this is what we&#8217;re destined to talk about. So you&#8217;ve given us the full introduction. So I&#8217;ll just take over for a minute, if that&#8217;s all right? Because that&#8217;s really the case, I think you could map that across all of the WordPress Meetups within the UK.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So prior to COVID, things seemed to be going great guns. There were lots and lots happening. I don&#8217;t know the exact number, but there were many. I could pluck out of the air several, and probably, if you combined all of the numbers of those, it was hundreds of people, you know, getting out of their house, going to an event, sharing expertise but also, like you said, the social side of things.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then this moment in time, this kind of sword of Damocles, if you like, suddenly that we didn&#8217;t know was there, dropped. Killed the whole thing overnight for good reason. You know, there was a really legitimate reason for everybody to stop moving around. But it seemed to have changed something for good.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now what&#8217;s curious about that is I remember being in that COVID time, and I remember being utterly fed up and bored, and praying for the time when things would just return back to normal. And with great speed, actually, with the benefit of hindsight, looking back, that almost seems like I watched a COVID TV program. You know, it seems like, obviously I know it was real to me, but it all seems so in the rear view mirror now. It was almost like it was part of a fictional book or something like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I fully expected that the minute all of the guards, and the protections, and the legislation came away, that I would just drop back into everything that I&#8217;d done before. And so for me, that&#8217;s what happened. I went immediately back to everything, you know, attending events, and all the other different things that I do in my own spare time that have got nothing to do with WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But the curious thing is, for me at least anyway, is that I appear to be different. You know, you&#8217;ve just gone back, within the last few weeks or so. What changed for you? Have you had the time to be introspective and think to yourself, why, Simon, did I not just resume what I was doing before?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:10:59] <strong>Simon:</strong> Yeah. So I mean it&#8217;s twofold for me. Yeah, I&#8217;ve been very reflective over the last kind of few weeks on this because I&#8217;m just reaching out again and seeing people. It&#8217;s like, I&#8217;ve not seen you in six years and it&#8217;s kind of crazy. Well I mean I spoke to them online and responded to comments here and there but, yeah, for me it was twofold.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So during the COVID times I was fortunate enough to have a baby, which changes everything again anyway. And that just became my focus. So whilst working full time and also having a child, that was my focus. The evenings, when I used to have the time to go to the Meetups and everything, in the evening, if I had any spare time, I would just prefer to sit. I didn&#8217;t want to do anything else. I didn&#8217;t have any energy. I was spent. I was enjoying a glorious moment of sitting, and if I was lucky watching a bit of TV. Yeah, it took it all out of me.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I&#8217;ve put things on pause in that sense. I wasn&#8217;t really doing anything. Yeah, as you&#8217;ve mentioned the guitars and everything, used to go to gigs a lot as well, but that kind of went on hold. The music side ironically kicked off after. So that&#8217;s something that did come in first. So whilst I didn&#8217;t go to Meetups, some other people, when things got back reached out to me and said, oh, I&#8217;m running a band, do you fancy joining that? So that became my kind of social outlet instead. So my focus went on that, and playing in a band and just meeting up with them. So that was my social interaction.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Ironically, that was someone I knew through, not through Meetups but through events they used to run, I think it was Future of Web Design, or future of, one of those that was down in London. A lady called Michelle, who also has a child, used to live behind me, back in the day in Bristol. She&#8217;s moved away. And then she just dropped a message on one of the other social platforms, which I&#8217;ll go back to, and just said, oh, do you fancy joining a band, I do drums? I didn&#8217;t even know she played drums. Like, she&#8217;d been playing drums since kind of school and it just came out.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that was my social outlet for a while. So I was doing that, and that was good because that was like once a month or so we&#8217;d just meet up and have a few hours. My wife could look after my little girl. And so that was my focus for a while and that kind of kept me content for a while moving forward. But I think, yeah, I lost the kind of the urge or the will. I didn&#8217;t really have the capacity to run the Meetup that I used to be involved with.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And there were a couple of failed attempts to hand it over. Several people came in and said, oh, I&#8217;d like to have a go at running that. So it&#8217;s brilliant. So I kind of was like, here&#8217;s the keys, off you go. Even still had the Trello board and everything that we had.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And one tried and failed. I think another one did and I just kind of left it. So I assumed nothing really was happening on that. Until recently, it was last year I believe when some of the original team, a lady called Janice who was there at the very first pub round table with me, I think we&#8217;ve been to every Meetup ever since. She moved into retirement because she was a web developer and was like, don&#8217;t want to stop doing things. And she liked the community and she thought, right, well, if no one&#8217;s going to get this up again, I&#8217;ll do it again. And she was in the team at the end as well, so she&#8217;s already had the experience. She pulled together some of the others of the team. So still another couple of people, Michael and Rob who used to kind of be managing as well, they&#8217;re back in it as well and they started bringing it back to life.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so I kind of saw this last year, the Meetups kind of started filtering through. And because I&#8217;m still connected to a lot of these people I found out, trying to remember how it came, it might, would&#8217;ve been something like LinkedIn or somewhere, or even emailed and that kind of came through. And it was like, oh, I need to go along to that one time, I really need to go along. And even one of my friends was talking, I was like, brilliant, I&#8217;ll go and see him, I&#8217;ve not seen him in ages. And then I had an operation that put me out of action for a while.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that came in, so even when I was just about ready to go. And then finally, turn around to this year and then, yeah, another good friend of mine Ross Wintle, who is a developer, who I think a lot of people hopefully will know, he works doing stuff for ACF in particular, which is why I harass him all the time. But I&#8217;ve known him for ages. He was talking, I was like, right, I&#8217;ve got to go along because he&#8217;s talking. I&#8217;ve not seen him in six years, and it&#8217;s a great chance to see everyone. And I was so glad I did.</p>\n\n\n\n<p class=\"wp-block-paragraph\">A lot of it, whilst it was smaller, it was still just a lot of the same people. So I think I kind of took in that seeing the people didn&#8217;t really appreciate the size but still it was kind of nice. It still felt the same. It was still the nice, friendly atmosphere which you get with WordPress. I think you get that across the board. Not just in Meetups, but devs talk to other devs which you don&#8217;t necessarily get in other industries. I would happily tell another dev, for what I would call a rival, inverted commas, company, how to do something if they were stuck, which you wouldn&#8217;t necessarily get in other industries.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And that filters through, for me, for the Meetup side. The atmosphere, it&#8217;s just very friendly and welcoming. And talking at it is a joy, because you will never get heckled. No one&#8217;s going to do that. Unless it&#8217;s a friend of yours and they&#8217;re teasing you, because you know them.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It&#8217;s just such a nice kind of crowd, and that&#8217;s where I started doing talks. And I don&#8217;t think I would&#8217;ve ever done a talk if it wasn&#8217;t in front of such a nice crowd and you knew you could kind of do what you wanted. You can make a mistake and no one&#8217;s going to pick you up on it. And then a lot of the time they were just interested to hear what you had to say. It was just, yeah, nice.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I think I&#8217;ve already talked myself into doing a talk again. So there&#8217;s a good reason to go back. So got to think about that. Yeah, and then I said, well, I used to have a network of people, so how do I reach out to that network of people that I used to do and pull them in? Like, how do I go, right, okay, we are doing all right here but as always, looking for people to talk? So how do I reach out to those people?</p>\n\n\n\n<p class=\"wp-block-paragraph\">And that&#8217;s kind of the next point is, the next thing that changed was the social network seemed to almost turn evil in places like Twitter, which used to be a nice go to, and you&#8217;d message everyone. Everyone kind of jumped ship because, for good reason. No one seemed to jump ship into the same boat, and everyone was doing their own thing and there was no confined next to step of where you get in touch. And that&#8217;s where I&#8217;m currently at is, six years down the line, what&#8217;s the way to kind of network now on the internet with these people and get in touch with those I may have lost touch with?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:34] <strong>Nathan Wrigley:</strong> That&#8217;s so interesting. I&#8217;m going to unpack a lot of what you said there. I&#8217;ve been making my little notes as you&#8217;ve been going along, but there&#8217;s a few things there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So the first thing is that it&#8217;s curious you, for reasons that you&#8217;ve explained very well, you know, the family being the easy one to grasp. You know, you had a very, a different life out the other side of COVID. And so the constraints around that, and the possibilities of socialising were diminished regardless.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I didn&#8217;t have that, and so I did sort of just drop back into where I was before. But what&#8217;s curious is that clearly isn&#8217;t the pattern. You know, we hear about, not just in the WordPress space, but lots of sort of social enterprises, clubs and things that were going on all over this country, kind of lost their way. They couldn&#8217;t attract the people back.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So something happened, I think, to us during that period of time. I don&#8217;t know if we just became habituated to sitting in more and, you know, more accustomed to watching the telly. I don&#8217;t know if they&#8217;re ingrained into us somehow, was this fear of the outside world. That&#8217;s really overdramatising it, but hopefully you can grasp what I mean. You know, just this idea that outside, bad, inside, good.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:44] <strong>Simon:</strong> It was two years of being told to stay inside. And whether of not, that&#8217;s going to sink in isn&#8217;t? At some point, without even thinking.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:50] <strong>Nathan Wrigley:</strong> Yeah. But then it just means that, when eventually the guardrails are pulled off, and obviously they weren&#8217;t just pulled off in one fell swoop. It was this sort of slow experimental phase, where you could be with a few people and then more people, and then that all got pulled back again, and then it all began again. Eventually, where we are now is you can do basically everything again. There&#8217;s no restrictions whatsoever.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But the community, the WordPress community in particular, I do wonder if we probably went into our screens a bit more than the typical person might do. Because, you know, we&#8217;re on our screens doing the work. Six o&#8217;clock maybe would&#8217;ve rolled by in the year 2018 and we would&#8217;ve closed the laptop, shut the computer down, and then done the other things. But then for a period of three or four years, we just carried on, on the screens and met on Zoom, or just carried on watching Netflix or whatever it may be. And then untangling all of that on the other side, proved hard, hard to do.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But then the bit that you just said, I&#8217;ve never thought about that. The social media, the shattering of social media where people have decided that this platform over there is not for them anymore. And, okay, I&#8217;m going to either discontinue using social media, or go to somewhere else and there really isn&#8217;t that, what do they call X? They used to call it the town square or something like that. And that&#8217;s a long time since that happened. But there&#8217;s now, there&#8217;s no replacement for that. There&#8217;s no one place you can go to. Everything&#8217;s shattered over multiple accounts. There&#8217;s no question there, but I don&#8217;t know if you wanted to respond to any of that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:15] <strong>Simon:</strong> That&#8217;s where I am at the minute was I moved on, I tried different things and that&#8217;s randomly how I got the band notification was off one of those. But I can&#8217;t even remember now what platform that was. And I think I&#8217;ve closed the tab on my browser, and I&#8217;ve long since forgotten and not really gone back into it because it was a handful of people. And I spent a lot of time building up my Twitter following, and I just lost the urge to kind of do that all over again. And followed enough people for a while but then kind of lost the interest in that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And, yeah, I don&#8217;t know, it&#8217;s weird. It&#8217;s just because there isn&#8217;t really anywhere that&#8217;s taken over that was, I mean Twitter was the key one for me. That was because I managed the account for the Meetup as well. So I could post on their behalf, but I could also kind of tie in and connect myself. I could retweet myself and retweet other people, and you could get those connections in place which is harder to do now.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That was my go-to, and then I don&#8217;t really know now, yeah, where to reach out. And even, one of the things raised at the Meetup I went to was, someone asked a question. It was like, well I&#8217;m not sure I can answer that for you immediately. We need to kind of sit down in front of a computer or something. But how do we communicate in between this and the next Meetup? How do we talk? What is the way to communicate now, that&#8217;s standard? You give out an email address or something that, I don&#8217;t know. Is that the way you communicate? I seemed very lost and almost forgotten how to socialise outside of actually being there in person. The in-betweens, which I&#8217;ve been doing for years and years, what&#8217;s the in-between way of talking?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:40] <strong>Nathan Wrigley:</strong> It&#8217;s strange that that&#8217;s a thing really, isn&#8217;t it? But it definitely is a thing. I suppose the piece of the jigsaw puzzle where it fits into this podcast is that if you are new to WordPress and you&#8217;ve never been to any of these events, and you&#8217;ve recently started going, a bit like you have done again. You go and you look at the event and you&#8217;ll think, okay, this is nice. Here&#8217;s the collection of people. But if you were to go pre 2019, so 2017, 2018 in particular, you were probably looking at the same event with, I don&#8217;t know, five times the number of people, 3, 4, 5, maybe even 10 times the number of people.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so whatever that period was, whether it was COVID or a variety of other things, the numbers have dropped. And I think, whilst it&#8217;s not, I&#8217;m using air quotes at the moment, whilst it&#8217;s not necessary to have community for an open source CMS software project, certainly helps.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It helps that these people gather. It helps that they gain empathy. They sort of start to understand each other. It helps so that they feel a connection. You know, they&#8217;re going to join different teams because, oh, that person&#8217;s in that team and I know that person. It helps because it enables you to share knowledge and hopefully, instead of 10 people falling over the same problem, one person does, and shares their experience to the other nine. And yada, yada, yada. On it goes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And it does trouble me that that component is now missing. It makes me think this isn&#8217;t good. And I don&#8217;t know what the answer is. I wish I had a magic wand that I could wave and bring it all back. Does it bother you? Do you feel that the community should still be important? Or can we just say, this is now where it is, just accept it. This is what we&#8217;ve got.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:26] <strong>Simon:</strong> Having dipped my toe back in properly into the community as it were, recently, it&#8217;s kind of reminiscing now what it was, and there&#8217;s still elements there of what it is and knowing people. It is almost networking. It&#8217;s kind of knowing those people, and someone knows someone. There&#8217;s a very kind of small world. Those relationships and people I used to speak to a lot that I didn&#8217;t so much, and it&#8217;s weird why that kind of stopped.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I think, yeah, it&#8217;s definitely the kind of the sharing. And it&#8217;s particularly relevant I would say if you are a freelancer or work on your own or you are even part of a smaller team. But the networking helps you kind of expand out, and expand your team without it having to be in the company you&#8217;re working for. Because as I previously mentioned, the rare thing in the WordPress community is that a developer can speak to another developer about an issue for say, it might even be for a client, and they will work together to resolve it. Offering back is how it was, and I think it still is in some areas, which you wouldn&#8217;t say get in others. And I think that&#8217;s the community side of it that&#8217;s very different.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I noticed that with the Meetup because I&#8217;ve been to other Meetups. We even did a collaboration Meetup as well. And the other ones I went to, it just didn&#8217;t feel the same kind of warmth. It felt very fixed. There was no kind of welcoming.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So the one thing that has always been relevant that the Bristol one, is we&#8217;ve got a welcoming team. So as soon as you step through the door there&#8217;s someone there. Get a little name badge as well. And if you&#8217;re new, they&#8217;ll ask a few questions and find out what you do. And what we always do is, oh, what do you do? Oh, I&#8217;m in project management. Ah, go and speak to so and so, they&#8217;re a project manager. Or, I&#8217;m looking for a developer. Or kind of find out what was their reasoning, and then direct them because we knew who was there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That&#8217;s opposed to other ones where you go in and you almost kind of sign in and then you&#8217;re left to your own devices, and no one approaches you, and it just felt very kind of awkward. Whereas we would try and engage everybody, and we were lucky with the people who kind of organised it, with people like Janice who&#8217;s just a naturally approachable person and she will go out and talk to people. And we had that kind of mixture of people that, it just made it nice, and it was nice to go along. And you would go along for the people as much as you would for the talk itself.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I would go to talks which had absolutely no interest to me on paper, but I go along anyway because I wanted to see everybody. And then I ended up finding out that these talks were actually sometimes even more interesting when I thought they wouldn&#8217;t be any relevance to me. And it helps you kind of expand your kind of knowledge, and appreciate other elements, and other factors that you might not know about. Which in person is just a lot better and I think it&#8217;s more engaging as well. So you can kind of stare at a screen watching something. It isn&#8217;t quite as engaging as it is being in person.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And also, once you finish, it&#8217;s the debrief after that I really like. So when the talk is finished and everything&#8217;s wrapping up, you can go and speak to the talker and query something with them and go and speak to other people. And you kind of have that little social bit afterwards, and it&#8217;s all just nice and relaxed. And you don&#8217;t really get that on a video call because you can&#8217;t really go and mingle on a video call, because how do you go and talk to someone else. And it isn&#8217;t the same in person, it&#8217;s just a lot easier to kind of do that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Yeah, how do you sell that for something that wasn&#8217;t there for a few years? It&#8217;s twofold. How do you bring in the people who used to come? And how do you introduce people who may have been born into never having that? The younger generation who lived through COVID, and didn&#8217;t really have that Meetup experience before it to know that this exists on the other side. And what would make it appeal to different kind of levels, really?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:43] <strong>Nathan Wrigley:</strong> So I&#8217;m not entirely sure, again, if we could rewind the clock. So this is going much, much further back. Let&#8217;s say the year 2003, something like that, when WordPress was really little. I don&#8217;t actually know the date of the first Meetup, but let&#8217;s imagine it was around there. And nobody had, in the WordPress community had ever thought to meet up.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If that just never had become a thing, I wonder how the project would&#8217;ve fared. I wonder if it would have been as successful. Because, you know, there were things like Skype and these platforms were coming along where you could do project management and things like that online. It feels like there was no, there would&#8217;ve been no inhibition to it being successful.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I&#8217;m more or less willing to predict that it would not have been successful. I think the glue that binds the project together on some completely unquantifiable level is that community. And a certain proportion of that community in the past required the in-person meeting. You know, whether it be the WordCamp events, where they get on a plane or in a car and drive a long distance for a few days and lots of talks. Or whether it&#8217;s the more kind of informal monthly Meetup scenario, where it&#8217;s probably closer to home and a little bit quicker and one evening only, something like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I just have an intuition that the project wouldn&#8217;t have been successful. It was those people, and I think I&#8217;ve heard the word maven. Maven being this sort of description of somebody who is like a hyper connector. They&#8217;re really good at connecting the dots between people and saying, you should meet this person, and you should meet this person. A little bit how you described.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I think there&#8217;s some jigsaw puzzle of that going on. There&#8217;s some tapestry of these community members making it successful in a way we&#8217;ll never fully unpick. And now that that, in the year, so we&#8217;re recording this in March, 2026. Now that that seems to be somewhat in question, it then raises the question of, well, what does that mean for the future of the project as a whole?</p>\n\n\n\n<p class=\"wp-block-paragraph\">My anticipation is that if we were to, let&#8217;s say nobody from this moment forward ever attended an event again, I think the project would not be as successful. There would be less development, there would be less interest in it. So I think it&#8217;s important that we do get these things back. But again, moving on to your point about how, that&#8217;s the tricky piece. You know, has life changed? Is the advent of everything online all the time, you know, so go back 10 years, there was no Netflix. Well, maybe there was, I don&#8217;t know. But the point is the entertainment that&#8217;s available through everybody&#8217;s TV now is so compelling, it&#8217;s kind of hard to fight against that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I don&#8217;t know how we get the young people in. I don&#8217;t know what it is about, you know, what the competition is. We&#8217;ve obviously got AI painted into the mix, and all of the interesting things going on there. So I don&#8217;t really, I&#8217;m not really pressing you for the answer.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:36] <strong>Simon:</strong> That&#8217;s fine. One of the reasons for joining is to kind of ask that question to the people listening and saying, has anyone else got that kind of magical wand and jigsaw missed piece? Has anyone got any ideas to kind of move forward with it? Because I say, I&#8217;m going to be looking, moving forward now, what I can do and how I can connect and get back in touch with people that I&#8217;ve not spoken to. I&#8217;ve already done it with a few people I hadn&#8217;t spoken to in a while. It&#8217;s like, oh, I&#8217;ve not spoken to you, oh, you&#8217;ve got a child as well. Oh, lovely. Those things you talk about which you just kind of left.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But yeah, I completely cut short on it and it&#8217;s just bizarre. But it is kind of coming back. It&#8217;s nice to know that whilst it&#8217;s quiet, it&#8217;s still there. It hasn&#8217;t died out, it&#8217;s just a little bit smaller than it was. But like you say, whether it can rebuild to where it was, or even partway to that is the query. I&#8217;d hope it can because I think it helps.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And the project itself, as you mentioned, WordPress wouldn&#8217;t exist without a community because it&#8217;s built by a community. It&#8217;s not built by a singular development company, and we wait for them to do it, you get involved. If you want to work with WordPress, you can do. There&#8217;s nothing stopping you getting involved. You can get in, you can be involved, you can be a tester, you can be a developer for it. There&#8217;s no like barrier to be involved in it, and it needs that community to keep it going. As you said, it wouldn&#8217;t probably have progressed to where it is without that community behind it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And that community is still there in some context, but where are they in terms of, how can I to them and talk to them? Because there&#8217;s definitely people I want to reach out to again. And what&#8217;s the way to reach people these days? What&#8217;s the platform now? What&#8217;s the way to reach out to people? Where are people talking? Are they talking anymore? Or is it all just looking at TikTok? This is where I&#8217;m going to sound really old. Looking at like TikTok and just looking at short videos of things and that&#8217;s where. Or do people still communicate, and how? What&#8217;s the way to do that?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:30:20] <strong>Nathan Wrigley:</strong> I get what you&#8217;re saying by the way. I am of a certain age and things like, how do you even do TikTok? What even is that? I&#8217;m not entirely sure. But again, rewinding the clock, the website was the thing. That was the fulcrum of the internet really. It was, you know, suddenly you had this capacity to publish things online, and in order to do that, certainly prior to Facebook and MySpace and those platforms, you had your blog, you know, that was the way to do it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You had to go through the process of setting it up. And the process of setting it up would pull back the curtain on, oh, so this is a bunch of files and a thing called a database. Right, okay. And that&#8217;s now on my computer, is it? Oh, right. And then that means I can mess up out with it. Oh, that&#8217;s interesting. And I can do this. And so this loop of curiosity gets created.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Whereas now, and again, this is where I&#8217;m going to sound old, the internet feels like a very different place. You know, you&#8217;ve got a billion platforms that you can just log into, no money down. There&#8217;s maybe some, you know, quid pro quo in terms of advertising or selling whatever it is that your attention can demand. And you can create your stuff over there, and it&#8217;s fine. And that platform has a reach of 3.6 billion people and yada yada, on you go.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So whether the incentives for younger people has changed because they just don&#8217;t see the need for having a website. Because that&#8217;s all been taken care of by these platforms that you log into. And, oh, just go over there, username, password, I&#8217;m all done. I think there&#8217;s something there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:31:48] <strong>Simon:</strong> Yeah, I guess it&#8217;s the questions when you&#8217;re working on something. Because back in the day you would speak to someone, it would be someone&#8217;s response. If I had a question I would need someone to have answered that question on the internet. So developers will, of a certain age, will know Stack Overflow is kind of the go-to. That&#8217;s where we spent most of our time on the internet. You&#8217;d ask Stack overflow because you&#8217;d hope someone else had the same issue, and they responded or they&#8217;ve posted it, someone&#8217;s told them how to fix it or that kind of thing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I got to the point where even I started, I made it as a goal to hit a certain score on Stack Overflow. I was like, right, I&#8217;m going to hit a certain score, I&#8217;m going to respond, I&#8217;m going to answer questions, just because I want to feel like I&#8217;m giving back because it felt nice. I&#8217;d consumed so many answers from Stack Overflow, it felt rude not to give back. And the same thing for me I think with WordPress is I was consuming so much information I wanted to kind of give back, it was nice. And it made you feel, there was a nice thing in the community thing was, if I knew the answer to something and I could explain that to someone else and help them, it was a nice feeling, it was a nice thing to do.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It was like, I&#8217;ve learned this thing, and you are looking to do that thing, oh, I learned it, do it this way, this is how you do it. And that kind of helped me. So all of my Stack responses were WordPress. And it was nice to kind of respond to someone and them say, oh yeah, that&#8217;s great, and then several other people would like it. It was just a real nice, positive thing as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But now, again, there is a lot of reliance on AI coming forward, because it&#8217;s like, you ask AI and AI gives you the answer. And whilst AI consumes information from people, it doesn&#8217;t tell you who it consumed it from. So your answer is coming from the AI agent you are using, not from whoever&#8217;s actually come up with that answer. So you&#8217;ll get your responses, you don&#8217;t have to reach out to a person anymore so much as you did back in the day. And whether that&#8217;s a factor that the community isn&#8217;t needed because it&#8217;s being replaced. And you aren&#8217;t exposed to the community so you are not getting the answers through the community, you are getting it kind of channeled through an AI agent who&#8217;s consuming that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So they&#8217;re doing all the stuff you used to do, and giving you the answers without you having gone into the community and found out that, oh, it was Joe Blogs who answered that question. And it might be that you reach out to them and say, actually, you knew this, do you know that? I&#8217;ve made connections through kind of these things as well, and if the answers are no longer attributed, and it&#8217;s like the AI agent is the one who&#8217;s responded, you don&#8217;t know who actually did that if that came through someone because it&#8217;s got this information.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:34:07] <strong>Nathan Wrigley:</strong> Yeah, it&#8217;s just the void provided the answer for you. Yeah, yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:34:11] <strong>Simon:</strong> Exactly. And that&#8217;s the community&#8217;s kind of gone on that sense but, is that how people are kind of, that&#8217;s what they like or do people still enjoy asking others? I still like responding to others internally in my team. If one of my fellow devs has a question, I love to kind of speak, screen share, go and talk through together, because it&#8217;s a lot more kind of enjoyable than just asking the internet.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:34:32] <strong>Nathan Wrigley:</strong> Yeah. So I wonder if that&#8217;s the bear bones of what we need to sort of aspire to. So it&#8217;s to realise that there&#8217;s a proclivity to, so, okay, rewind a bit. To realise that the community has taken a hit. There&#8217;s no question that&#8217;s happened. But also to realise that there isn&#8217;t a panacea for this. There&#8217;s no red pill that we can take which is going to fix it over time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It&#8217;s to recognise that there&#8217;s value in these things. It may be that there has been a dwindling in the audience of these things, but also that little avatar that you just painted of the person who&#8217;s curious about the code, but also has a desire to hang out, for the multitude of reasons that that could be, you know, they want to just hang out because that&#8217;s a nice thing to do, or they want to do networking, or they want to just make connections that they can chat to when they&#8217;re not in the room. To recognise that those people are still out there, and maybe those numbers are smaller.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Whilst you were talking also, it sort of occurred to me that maybe we&#8217;re just in flux. You know, nobody&#8217;s writing on cuneiform tablets anymore. Nobody&#8217;s using a stylist to write on papyrus anymore. Things change, you know, over time. And it may be that this is just the new normal, this is what we now have. I&#8217;m not entirely sure. But I kind of long for halcyon days. I&#8217;m looking back to those sort of 2018s, 2019s and thinking that&#8217;s the bar I&#8217;d like to have set. Whether or not that&#8217;s possible, I&#8217;m not sure.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:59] <strong>Simon:</strong> Yeah. It leads to me onto the level up on the Meetup was the WordCamps where it was a big kind of weekend event. And I was lucky enough to be involved. So I was the speakers organiser for the WordCamp that was in Bristol in 2019. Ironically booked my boss before I joined a company just as one of the speakers, and someone we employed as well I booked in for that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And that was just, yeah, it got so big that we could actually run an entire weekend of stuff. But because the Meetups are now going down in size, I see there is still the appetite. It seems in America and other kind of countries around, but would there still be the appetite in England specifically, where we&#8217;re both based, for there to be a WordCamp? Would there be enough to warrant one of those? Or would it have to be very scaled back? Because I remember back in the day, I&#8217;ve been to like the London ones and you&#8217;ve got multiple tracks. Even the Bristol one had two separate tracks running. But now would it be something a bit more stripped back? Would it just be one track and a small kind of event? What scale would it be? Would there still be the interest?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:36:56] <strong>Nathan Wrigley:</strong> And also, does it have to be kind of mixed up with other things? Like, does it have to be part entertainment, part information, part hallway? Because again, I just wonder if that&#8217;s the diet that we&#8217;ve created ourselves with. Our always on culture, where entertainment is so readily available, I do wonder if, you know, we&#8217;ve got to just acknowledge that those things are of importance.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you want to attract an audience of people, you&#8217;ve got to have the social afterwards, you&#8217;ve got to have the band, the live entertainment, the bits in between, the, I don&#8217;t know what that is, but just some aspect of gimmicks to make these events fun. Not just, okay, let&#8217;s go to a talk, watch the talk and then all go home.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:37:36] <strong>Simon:</strong> Yeah. There was always, I mean the thing I liked with a lot of these was there was the kind of a developer day or, that often preceded so you could get involved a bit more for those who wanted to. So there were kind of certain things. There were the socials as well that was always key to some, and that was just a nice way to kind of unwind afterwards. Because a lot of the time people would be traveling, so you didn&#8217;t want to go to the event and then go back to the hotel room and sit on your own. You could stay out and chat.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And as mentioned before, the community is a lovely community. So it&#8217;s people you want to hang out with because they&#8217;re nice people to hang out with. They&#8217;re all really lovely. And I&#8217;ve met a lot of really nice people at Meetups, at WordCamps. Just afterwards in particular and just chatting, chat about anything because after a while you get bored talking about WordPress, you&#8217;ll chat about whatever you want.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I mean if I get talking about music then I&#8217;m away. But it&#8217;s just, you build those relationships. And there are connections that I&#8217;ve made back, six, seven years ago that I&#8217;m still in touch now and I&#8217;m reaching out again and going, we lost that touch in between. So I&#8217;m kind of reaching out again and just catching up with people. It&#8217;s just nice to know like, oh, you&#8217;re still in the industry. What are you doing? What&#8217;s happened to you? And that kind of just disappeared almost. There wasn&#8217;t a way to stay in touch in between.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:38:42] <strong>Nathan Wrigley:</strong> The sort of glib comment that I made at the beginning about the fact that if we were to switch on the cameras on this podcast, we&#8217;d be able to see that Simon has a guitar in his background.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:38:51] <strong>Simon:</strong> I&#8217;ve got more if you look further up.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:38:52] <strong>Nathan Wrigley:</strong> Yeah, there&#8217;s many musical instruments there. But the point being though that there seems to be a, certainly from my perspective, doing these interviews on a, multiple a week. There&#8217;s a high correlation between musicians and WordPressers. And so I&#8217;m going to drop this bomb. Maybe that&#8217;s a channel for these events is to combine other things. Like combine cinema with a WordPress event. So, you know, there&#8217;s a track for watching films at the same time as there&#8217;s tracks for speakers, but there&#8217;s also live music over there. You know, I&#8217;m not suggesting we invite Coldplay or anything. But, you know, some local acts. Maybe some of the people that are involved in the event themselves, many of whom we know are musicians. It&#8217;s gimmicks again, but it&#8217;s fun.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:39:32] <strong>Simon:</strong> It&#8217;s a nice way, yeah, I mean it&#8217;s on our, so our band&#8217;s been going for a while and it&#8217;s still on our bucket list is to actually perform somewhere. We get together and rehearse and it&#8217;s one of my bucket list things is I would love to actually perform. Even if it&#8217;s just in a small pub in front of a handful of people and I know them all anyway, but just to kind of do that performance in front of things.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that could be tied in. I wouldn&#8217;t be against kind of suggesting it to the rest of the guys and saying, there&#8217;s going to be this event and there&#8217;s all sorts of things taking place. There&#8217;ll be some technical talks or whatever and all these things. There&#8217;s also some music so we could perform. Definitely an idea. Yeah, like you said, there&#8217;s a lot of musicians around.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:40:07] <strong>Nathan Wrigley:</strong> Like a hybrid, arts meets technology kind of event.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:40:11] <strong>Simon:</strong> Yeah. There&#8217;s a lot of creativity. One of the best people I got speaking at the Bristol Meetup, bare in mind this is just a very small handful of people, a guy called Gavin Strange who works for Aardman. He is just amazing, and he&#8217;s done some brilliant speeches. I lucked out working with him on a community thing where we got together on a weekend and built websites in the space of a weekend. So thank God for WordPress, I basically built a site in, I don&#8217;t know, about five hours, we built a website from scratch.</p>\n\n\n\n<p class=\"wp-block-paragraph\">He was working with us doing some animations and things and was such a positive, really great person. He works outside of work. He&#8217;s insane. He never stops. I reached out on a whim and said, do fancy doing a talk? And he goes, well, I don&#8217;t do WordPress. It doesn&#8217;t matter, it can be anything. And he came along and did a really good, positive, energetic talk. And that was my biggest coup was I got him to speak to us.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:40:57] <strong>Nathan Wrigley:</strong> And it was nothing to do with WordPress. Okay, that&#8217;s so interesting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:41:00] <strong>Simon:</strong> Absolutely nothing. Nothing to do with WordPress. He just talked about, I can&#8217;t even remember, it&#8217;s a long time ago, but it was just interesting because it, just talking about what he does and a lot of kind of what he does outside of his working day and keeping busy and just.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:41:14] <strong>Nathan Wrigley:</strong> There&#8217;s a lot of overlap with soft skills and things, isn&#8217;t there? And to be honest with you, even just learning about the animation process and the tech, no doubt, involved in that. It&#8217;s kind of interesting. Okay. This is fascinating. This is going in an unexpected direction.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:41:27] <strong>Simon:</strong> That&#8217;s my thing now is maybe I can reach out to him again. And then through my other ways I&#8217;ve, I know someone who&#8217;s done a TED talk. That&#8217;s just probably a little level too much, but he&#8217;s a mountain biker. But I wonder, can I tie in that into somehow? And can I pull in that crowd that way? There&#8217;s all those kind of connections. It&#8217;s like, it doesn&#8217;t have to be. I think that&#8217;s the thing, we managed to get across that it doesn&#8217;t have to be WordPress. You can talk about anything if it relates to the internet, and then it might just aspire that that connects to a site that runs WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That&#8217;s how we kind of got a bigger crowd because we dabbled. We did do a technical focused one and it just, that was my thing. I really wanted to get techie and nerdy and it&#8217;s like, but you just cut down to too much of a niche and you&#8217;re cutting people out. It&#8217;s better to kind of have all sorts of things, and as I mentioned before, getting people to see a talk about something they might not think they&#8217;re interested in and realise actually it is very interesting and put across and try and get people in.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:42:17] <strong>Nathan Wrigley:</strong> Yeah. I think that&#8217;s the perfect place to sort of draw a line under this one. So what we&#8217;re saying is that WordPress events, Meetups in particular, I think we&#8217;re talking about mainly, they&#8217;re definitely going through a state of flux. We don&#8217;t necessarily have the answer, but we&#8217;ve definitely floated what the problem is. And there&#8217;s a few towards the end there, interesting ideas of ways to possibly make it more engaging to people who&#8217;ve, I don&#8217;t know, just lost interest, or have never come across WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So, oh, that&#8217;s fascinating. I really enjoyed that. Simon, where do people find you? Where are, you mentioned earlier how the entire world of social networking has been shattered.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:42:53] <strong>Simon:</strong> That&#8217;s my issue. Yeah, well, I mean you can find me on illustrate.digital. I&#8217;ve got to give a slight plug out to the company I work for. We are a WordPress agency. We do loads of stuff for WordPress. At the minute I seem to be living on LinkedIn. I got addicted to a game on there, and then I kept kind of pulling back. That&#8217;s my kind of way to reach out at the minute so you can find me there. I think, yeah, otherwise I don&#8217;t really use the other socials. I am on Facebook, if you find me, good luck. But otherwise I think LinkedIn is the way to get me initially. But if you&#8217;ve got an example and say, ah, you should join this platform, do reach out and let me know, I&#8217;m happy to have a look.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:43:22] <strong>Nathan Wrigley:</strong> Thank you. I will make sure that anybody listening to this is able to find that. If you go to wptavern.com, search for the episode with Simon Pollard in, you&#8217;ll be able to probably scroll to the bottom of the show notes and there&#8217;ll be links to his LinkedIn.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So Simon Pollard, that was a really curious and interesting chat. Thank you for chatting to me today. I appreciate it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:43:41] <strong>Simon:</strong> Thank you very much 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/simonp303/\">Simon Pollard</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Simon has been building with WordPress for many years. Originally from Devon in England, he’s worked as a professional web developer across locations, eventually landing at Illustrate Digital, where he’s been for six years. Simon’s not just a coder, he’s been deeply involved in the WordPress community, not only organising, but helping to grow the Bristol WordPress Meetup from a casual get-together in a pub to a thriving, officially-backed event with dozens of regular attendees.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Like many in the WordPress ecosystem, Simon wears multiple hats. He’s a musician, a devoted dad, and an accidental community leader who found himself at the heart of local WordPress organising. But COVID-19 changed all that. In today’s episode, Simon explains what happened to WordPress Meetups during and after the pandemic, how vibrant communities fizzled out, how hard it was to bring people back, and the new challenges of connecting when traditional social media platforms no longer bring everyone together.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Simon talks about his own journey, how he paused on events, shifted his social life to music, and struggled to hand the Meetup keys to new organisers. Eventually, a call from old friends drew him back, and he was faced with the new reality, smaller groups, fractured channels, and the question of how to keep the in-person spirit of WordPress alive.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We get into the irreplaceable value of real-life connection, the ‘warmth in the room,’ and the need to rethink what gets people to in-person events now. Is it hybrid events? Perhaps it’s music? Something beyond pure WordPress talks? We discuss what’s been lost, what still matters, and what it might take to build the next era of WordPress community in a distracted, always-connected world.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re curious about the future of WordPress Meetups, if you’ve felt the ebb and flow of community during the past few years, or if you just want to know how to find your people again, 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://www.linkedin.com/in/simonp303/\">Simon on LinkedIn</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://illustrate.digital\">Illustrate Digital</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.meetup.com/bristol-wordpress-meetup-group/\">Bristol WordPress Meetup Group</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 Mar 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: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:45:\"Open Channels FM: It’s Channel 4, Literally\";s:7:\"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=2551213\";s:7:\"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:48:\"https://openchannels.fm/its-channel-4-literally/\";s: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:132:\"Welcome to Channel 4, where Bob Dunn finally found a home for offbeat chats after sleepless nights. It’s the podcasting wild card.\";s: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, 18 Mar 2026 10:10:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:63:\"HeroPress: I Don’t Have It All Figured Out. I Show Up Anyway.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=8509\";s:7:\"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:168:\"https://heropress.com/essays/i-dont-have-it-all-figured-out-i-show-up-anyway/#utm_source=rss&utm_medium=rss&utm_campaign=i-dont-have-it-all-figured-out-i-show-up-anyway\";s: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:9087:\"<img alt=\"Pull Quote: You don’t have to wait until you feel ready. You just have to show up.\" class=\"attachment-large size-large wp-post-image\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2026/03/031726.webp\" width=\"1024\" /><section class=\"wp-block-newsletterglue-group\" style=\"padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px;\">\n<figure class=\"wp-block-audio\"><audio controls=\"controls\" src=\"https://heropress.com/wp-content/uploads/2026/03/Indira_Biswas_HeroPress_Audio.mp3\"></audio><figcaption class=\"wp-element-caption\">Here is Indira reading her own story aloud.</figcaption></figure>\n</section>\n\n\n<p>My background is in Quality Assurance: testing features, observing behaviour, and making sure things work as expected. For a long time, I believed open source contribution mostly meant writing code. Since I wasn’t a developer, I saw myself more as someone learning from the community than contributing to it.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-finding-my-place\">Finding My Place</h2>\n\n\n\n<p>I grew up in <a href=\"https://en.wikipedia.org/wiki/Akola\">Akola</a>, a small town a few hours from <a href=\"https://en.wikipedia.org/wiki/Nagpur\">Nagpur</a>. Our school computer lab had one computer for every ten or twelve students. I was shy, so I rarely got a turn at the keyboard. Most of the time I watched from a few rows back, trying to understand what the others were doing.</p>\n\n\n\n<p>I went on to complete a diploma and then a degree in Computer Science. Fast forward to today: I started a role at <a href=\"https://rtcamp.com/\">rtCamp</a>, a company where contributing to open source is part of the culture rather than something people do in their spare time. Even then, I was too reluctant to ask whether there was a place for a QA engineer in the WordPress contributor community.</p>\n\n\n\n<p>Then, at a Contributor Day, I watched a few people test a feature, open tickets, report bugs, and translate strings. They weren’t writing code, but they were clearly contributing. I remember thinking: this is exactly what I do. I eventually understood that testing is an important part of building better software, and that there is space for many different kinds of contributors.</p>\n\n\n\n<p>While browsing <a href=\"https://make.wordpress.org/chat/\">WordPress Slack</a> one day, I came across the <a href=\"https://make.wordpress.org/community/handbook/contributor-day/contributor-working-group/contributor-mentorship-program-for-wordpress/\">WordPress Contributor Mentorship Program</a>. It felt like the opportunity I had been waiting for. Without consulting anyone or giving myself time to second-guess it, I signed up. The program did what the best communities do. It didn’t focus on teaching me how to code. Instead, it showed me how to collaborate: how to work with a team, support each other, communicate clearly, and encourage one another. It helped me understand why the WordPress community feels so welcoming to so many people.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-one-step-at-a-time\">One Step at a Time</h2>\n\n\n\n<p>From there, I started contributing to the Polyglots team, then Core, Test, and Photos.</p>\n\n\n\n<p>Being part of these teams helped me understand open source in a new way. I started to see how many different kinds of work go into building and supporting a project. Not just writing code, but testing, translating, documenting, and helping each other. Every contribution, no matter how small, helps move things forward.</p>\n\n\n\n<p>I became a contributor on consecutive releases: WordPress 6.7 “Rollins,” WordPress 6.8 “Cecil,” and WordPress 6.9 “Gene.” I still feel the butterflies, and a lot of pride, every time I’m listed as a contributor in a release post. The community had quietly been helping me overcome my fears, and I no longer felt the jitters about coming forward and putting my name in for different roles.</p>\n\n\n\n<p>A recent example: there was an upcoming Contributor Day at WordCamp Asia, and I signed up to volunteer at a table. I didn’t apply to lead or co-lead. That felt like too much. Volunteering was enough. Then I got a call from the organisers asking if I would be open to co-leading the table.</p>\n\n\n\n<p>For once, I said yes.</p>\n\n\n\n<p>I am still a month away from WordCamp Asia 2026 as I write this. I am thrilled and nervous in roughly equal measure. The person who used to watch from the back of the school computer lab is going to stand and address a room full of people.</p>\n\n\n\n<p>I don’t know yet how it will go. But I said yes, and that feels like something.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-for-anyone-watching-from-the-sidelines\">For Anyone Watching from the Sidelines</h2>\n\n\n\n<p>It wasn’t always easy. I completed my primary schooling in the regional language, and things as basic as speaking and writing fluent English required a lot of effort. On many occasions, I doubted myself.</p>\n\n\n\n<p>I feel very fortunate to have been welcomed into this community with open arms. From the very beginning I felt at home, and I have never been made to feel like I don’t know enough. I am still learning every day, finding my path and trying to make an impact.</p>\n\n\n\n<p>There are many accomplished contributors and talented women in this community, juggling multiple responsibilities, quietly taking on leadership roles, contributing consistently without making a fuss about it. None of them waited to feel ready. They started anyway, and the community met them where they were. I am sure that by simply continuing to show up, I will learn a great deal from them and keep finding my voice along the way.</p>\n\n\n\n<p>If you’re someone who is on the fence about starting a contributor journey in the WordPress community, know this: there is no hierarchy here. Everyone is welcome and equally valued. The work you already know how to do is needed. You don’t have to learn to code, unless you want to. You don’t have to wait until you feel ready. You just have to show up.</p>\n\n\n\n<p>It’s okay if you’re not ready to lead yet. It’s okay if you’re still watching from the sidelines. Start where you are. Your yes will come.</p>\n\n\n\n<p>My name is Indira Biswas. I am a QA Engineer at rtCamp. I have contributed to WordPress Core, the Test Team, Polyglots, and Photos. I have spoken at WordCamps, and in a few weeks I will stand on the WordCamp Asia stage as emcee and co-lead the Core table at Contributor Day.</p>\n\n\n\n<p>I am grateful beyond what I know how to say, to the community that kept the door open, to people like <a href=\"https://www.worksbymichelle.com/\">Michelle Frechette</a>, <a href=\"https://www.linkedin.com/in/thecancerus/\">Amit Kumar</a>, and <a href=\"https://profiles.wordpress.org/pavanpatil1/\">Pavan Patil</a> who were encouraging from the very beginning, and to the Mentorship Programme.</p>\n\n\n\n<p>The WordPress community gave me a place to put my work and a reason to keep doing it. I hope to keep giving that back for a long time.</p>\n\n\n\n<p>If you are coming to WordCamp Asia in Mumbai this year, please come say hi. I would love to meet you, hear your story, and yes, probably add a few more photos to my selfie collection.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-2 is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-8514\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2026/03/WordCamp-Pune-2025-820x1024.webp\" width=\"820\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-8516\" height=\"769\" src=\"https://heropress.com/wp-content/uploads/2026/03/WordCamp-Pune-2026-1024x769.webp\" width=\"1024\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-8515\" height=\"768\" src=\"https://heropress.com/wp-content/uploads/2026/03/WordCamp-Pune-2026-_-Team-1024x768.webp\" width=\"1024\" /></figure>\n</figure>\n\n\n\n<div class=\"wp-block-group has-background is-vertical is-nowrap is-layout-flex wp-container-core-group-is-layout-8f084edc wp-block-group-is-layout-flex\" id=\"desktop\">\n<h2 class=\"kt-adv-heading8509_a5d107-fd wp-block-kadence-advancedheading\" id=\"work-environment\">Indira&#8217;s Work Environment</h2>\n\n\n\n<p>We asked Indira for a view into her contribution life and this is what she sent! Make sure you click on the hot spots.</p>\n\n\n	<div class=\"hotspots-image-container\">\n		<img alt=\"Indira Biswas&#039; Desktop\" class=\"hotspots-image skip-lazy\" height=\"2259\" src=\"https://heropress.com/wp-content/uploads/2026/03/Indira_Biswas_Desktop.webp\" width=\"1440\" />\n	</div>\n\n\n\n\n<p class=\"has--font-size\">HeroPress would like to thank <a href=\"https://wpdrawattention.com/\">Draw Attention</a> for their donation of the plugin to make this interactive image!</p>\n</div>\n<p>The post <a href=\"https://heropress.com/essays/i-dont-have-it-all-figured-out-i-show-up-anyway/\">I Don’t Have It All Figured Out. I Show Up Anyway.</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 Mar 2026 02: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:13:\"Indira Biswas\";s: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:90:\"Open Channels FM: Connecting Decentralized Social Networks and Rethinking Interoperability\";s:7:\"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=2551015\";s:7:\"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/connecting-decentralized-social-networks-and-rethinking-interoperability/\";s: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:196:\"In this chat, Matthias and Ryan dive into Ryan\'s journey building tools like Bridgy to connect decentralized networks, emphasizing the importance of interoperability and community in the open web.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 17 Mar 2026 09: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:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 07 Apr 2026 05:43:00 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Tue, 07 Apr 2026 05:30:20 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:4:\"gzip\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}s:5:\"build\";i:1775376324;s:21:\"cache_expiration_time\";i:1775583780;s:23:\"__cache_expiration_time\";i:1775583780;}', 'off');
INSERT INTO `wpd_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1338, 'elementor_pro_remote_info_api_data_4.0.1', 'a:2:{s:7:\"timeout\";i:1775614463;s:5:\"value\";s:253331:\"{\"stable_version\":\"4.0.1\",\"last_updated\":\"2026-04-01 13:42:17\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:237189:\\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\n<h4>4.0.1 - 2026-04-01<\\/h4>\\n<ul>\\n<li>Fix: Exposed text properties appear empty in existing components - Atomic Editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/35357\\\">#35357<\\/a>)<\\/li>\\n<li>Fix: Cannot publish existing components with overridable properties - Atomic Editor<\\/li>\\n<li>Fix: Unexpected characters appear when deleting attribute values using backspace - Atomic Editor<\\/li>\\n<\\/ul>\\n<h4>4.0.0 - 2026-03-30<\\/h4>\\n<ul>\\n<li>New: Introducing Atomic Forms using composable Atomic elements - create flexible form layouts by combining individual field elements - Atomic Editor<\\/li>\\n<li>New: Introducing Interactions with new triggers and custom effects for dynamic experiences - create animations based on user scroll and user behavior - Atomic Editor<\\/li>\\n<li>Tweak: Component creation is available for Pro users - Atomic Editor<\\/li>\\n<li>Tweak: Added the ability to detach Components into editable layouts - Atomic Editor<\\/li>\\n<li>Tweak: Added support for custom fonts in typography controls - Atomic Editor<\\/li>\\n<li>Fix: Unable to paste content into the Custom CSS field - Atomic Editor<\\/li>\\n<li>Fix: Error when assigning a dynamic custom field to a component\'s inner element in Components - Atomic Editor<\\/li>\\n<\\/ul>\\n<h4>3.35.1 - 2026-02-11<\\/h4>\\n<ul>\\n<li>Fix: Enqueue script errors when <code>WP_DEBUG<\\/code> is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/34617\\\">#34617<\\/a>)<\\/li>\\n<li>Fix: General UI issues in Editor screens in WordPress Admin<\\/li>\\n<\\/ul>\\n<h4>3.35.0 - 2026-02-02<\\/h4>\\n<ul>\\n<li>Tweak: Extended the color picker to support ACF fields - Editor V4<\\/li>\\n<li>Tweak: Enabled size variables with custom units across relevant controls - Editor V4<\\/li>\\n<li>Tweak: Enabled size variables in border radius controls - Editor V4<\\/li>\\n<\\/ul>\\n<h4>3.34.4 - 2026-01-29<\\/h4>\\n<ul>\\n<li>Fix: Shortcodes overflow the screen on Saved Templates screen in WordPress Admin<\\/li>\\n<li>Fix: Avoid Multiple Popups control does not work in Popups<\\/li>\\n<\\/ul>\\n<h4>3.34.3 - 2026-01-26<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder WordPress view does not work as expected<\\/li>\\n<li>Fix: Submissions menu appears even when the setting is disabled<\\/li>\\n<\\/ul>\\n<h4>3.34.2 - 2026-01-22<\\/h4>\\n<ul>\\n<li>Tweak: Updated notification behavior in Elementor menu in WordPress admin<\\/li>\\n<\\/ul>\\n<h4>3.34.1 - 2026-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Unified the Elementor interface into a single place to manage, optimize, and configure Elementor capabilities in WordPress admin<\\/li>\\n<\\/ul>\\n<h4>3.34.0 - 2025-12-22<\\/h4>\\n<ul>\\n<li>New: Added support for Display Conditions for Atomic Elements - Editor V4<\\/li>\\n<li>Tweak: Enabled media queries for the Desktop breakpoint only in Custom CSS - Editor V4<\\/li>\\n<li>Tweak: Added support for ACF field in Dynamic Tags - Editor V4<\\/li>\\n<li>Tweak: Added support for Google Calendar in Contact URL Dynamic Tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Tel link in Contact URL Dynamic Tag - Editor V4<\\/li>\\n<li>Tweak: Added support for ACF Image field in Dynamic Tags - Editor V4<\\/li>\\n<li>Tweak: Removed icon from the accessibility tree in Flip Box widget<\\/li>\\n<li>Tweak: Applied CSS logical properties in text-align controls and improved RTL rendering in the Editor<\\/li>\\n<li>Fix: Website Template library displayed in English instead of the translated language<\\/li>\\n<li>Fix: Custom CSS field breaks when using certain characters - Editor V4<\\/li>\\n<\\/ul>\\n<h4>3.33.2 - 2025-12-03<\\/h4>\\n<ul>\\n<li>Fix: Incorrect status shown for Custom Code, Fonts, and Icons after importing a Website Template<\\/li>\\n<li>Fix: Display Conditions window appears empty in the editor<\\/li>\\n<\\/ul>\\n<h4>3.33.1 - 2025-11-11<\\/h4>\\n<ul>\\n<li>Fix: Styles not loading correctly in Custom Fonts and Custom Icons admin screens (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/33396\\\">#33396<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.33.0 - 2025-11-10<\\/h4>\\n<ul>\\n<li>New: Introducing Custom CSS for element-level styling with full isolation and responsive control - Editor V4<\\/li>\\n<li>New: Introducing media save to cloud in Website Templates, enabling users to store media assets directly in the cloud for easier access and management.<\\/li>\\n<li>Tweak: Added support for Post Excerpt dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Internal URL dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Post Terms dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Shortcode dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Popup dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Off-Canvas dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Lightbox dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Add To Cart dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for ACF URL dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Archive Title dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for the Email Contact URL dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for reduced-motion preferences in Flip Box widget<\\/li>\\n<li>Tweak: Updated minimum supported versions for Chrome, Firefox, and Safari<\\/li>\\n<li>Tweak: Updated Notes button location in the Editor Top Bar<\\/li>\\n<\\/ul>\\n<h4>3.32.3 - 2025-10-21<\\/h4>\\n<ul>\\n<li>Fix: Website Template fails to apply when Custom Code or Custom Icons are included<\\/li>\\n<\\/ul>\\n<h4>3.32.2 - 2025-09-29<\\/h4>\\n<ul>\\n<li>Fix: Exported taxonomies are not displayed correctly on the summary page in Website Templates export<\\/li>\\n<li>Fix: Certain taxonomies are not exported as expected in Website Templates export<\\/li>\\n<\\/ul>\\n<h4>3.32.1 - 2025-09-16<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder fails to load when containers are disabled<\\/li>\\n<li>Fix: Popup and single product templates not imported or exported as expected<\\/li>\\n<\\/ul>\\n<h4>3.32.0 - 2025-09-15<\\/h4>\\n<ul>\\n<li>New: Introducing Size Variables to store and reuse numeric values across spacing, typography, layout, and borders - Editor V4<\\/li>\\n<li>New: Introducing granular Transitions with property-level control for advanced micro-animations - Editor V4<\\/li>\\n<li>New: Added granular content selection for Website Templates import and export, including pages, menus, post types, and taxonomies<\\/li>\\n<li>Tweak: Enhanced accessibility of background images in Slides widget with proper aria attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23543\\\">#23543<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/31063\\\">#31063<\\/a>)<\\/li>\\n<li>Tweak: Added REST API support for the Custom Code feature<\\/li>\\n<li>Tweak: Moved Background control from Content tab to Style tab in Flip Box widget<\\/li>\\n<li>Tweak: Removed SVG icons from the accessibility tree in Share Buttons widget<\\/li>\\n<li>Tweak: Removed dropdown indicator icons from the accessibility tree in WordPress Menu widget<\\/li>\\n<li>Fix: PHP 8.4 deprecation notices when running with <code>WP_DEBUG<\\/code> enabled<\\/li>\\n<li>Fix: Reduced-motion preferences are not applied to Animated Headline widget<\\/li>\\n<li>Fix: Reduced-motion preferences are not applied in Motion Effects<\\/li>\\n<li>Fix: Added required PHP and WordPress versions to the plugin header<\\/li>\\n<\\/ul>\\n<h4>3.31.3 - 2025-09-08<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in WordPress Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.31.2 - 2025-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Improved release version functionality<\\/li>\\n<\\/ul>\\n<h4>3.31.1 - 2025-08-06<\\/h4>\\n<ul>\\n<li>Tweak: Updated <code>form-data<\\/code> package version<\\/li>\\n<\\/ul>\\n<h4>3.31.0 - 2025-08-05<\\/h4>\\n<ul>\\n<li>New: Introducing Attributes - add custom HTML attributes to elements for advanced control - Editor V4<\\/li>\\n<li>Tweak: Optimized Custom Code styles by removing redundant RTL file<\\/li>\\n<li>Tweak: Improved performance by loading ribbon styles only when used in Call to Action and Price Table widgets<\\/li>\\n<li>Tweak: Improved semantic markup structure for header and footer documents<\\/li>\\n<li>Tweak: Reorganized design controls in Animated Headline widget<\\/li>\\n<li>Tweak: Reorganized design controls in Blockquote widget<\\/li>\\n<li>Tweak: Reorganized design controls in Countdown widget<\\/li>\\n<li>Tweak: Replaced SASS mixins and functions with native CSS logical properties<\\/li>\\n<li>Fix: Empty headers are rendered in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28167\\\">#28167<\\/a>)<\\/li>\\n<li>Fix: <code>TypeError<\\/code> bug in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.30.1 - 2025-07-22<\\/h4>\\n<ul>\\n<li>Security Fix: Improved content sanitization in multiple widgets<\\/li>\\n<li>Fix: UI issue in Hotspot widget when Optimized Markup experiment is enabled<\\/li>\\n<li>Fix: Taxonomy filter not working in the Editor when Optimized Markup experiment is enabled<\\/li>\\n<\\/ul>\\n<h4>3.30.0 - 2025-07-01<\\/h4>\\n<ul>\\n<li>New: Introduced Full Website Templates in the Cloud - export, manage, and reuse full site kits across all your websites from one place<\\/li>\\n<li>Tweak: Activated &quot;Optimized Markup&quot; feature on new sites<\\/li>\\n<li>Tweak: Activated &quot;Menu&quot; feature on new sites<\\/li>\\n<li>Tweak: Improved error handling for Theme Builder display conditions<\\/li>\\n<li>Tweak: Added styling controls to Post Excerpt widget<\\/li>\\n<li>Tweak: Improved accessibility with <code>role<\\/code> and <code>aria-label<\\/code> attributes Post Navigation widget<\\/li>\\n<li>Tweak: Added <code>aria-label<\\/code> in Form widget<\\/li>\\n<li>Tweak: Added <code>aria-label<\\/code> in Login widget<\\/li>\\n<li>Tweak: Arranged content as lists in Portfolio and Posts widgets<\\/li>\\n<li>Tweak: Added Box Shadow and Text Shadow controls in Countdown widget<\\/li>\\n<li>Tweak: Moved image resolution control to content tab in Price List widget<\\/li>\\n<li>Tweak: Renamed and reorganized style sections in Price List widget<\\/li>\\n<li>Tweak: Added conditional logic to controls in Price Table widget<\\/li>\\n<li>Tweak: Grouped layout controls under list section in Price List widget<\\/li>\\n<li>Tweak: Updated minimum required WordPress version to 6.6<\\/li>\\n<li>Fix: Inline font icons support doesn\'t work in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24367\\\">#24367<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18343\\\">#18343<\\/a>)<\\/li>\\n<li>Fix: Page Title condition doesn\'t work on child pages in Widget Display Conditions<\\/li>\\n<li>Fix: Editor users with &quot;Access to edit content only&quot; are able to delete elements<\\/li>\\n<li>Fix: Links are not crawlable in Video Playlist widget<\\/li>\\n<li>Fix: Uses hardcoded admin fonts in Video Playlist widget<\\/li>\\n<li>Fix: Editor freezes when the Form widget is used with a high PHP upload size limit<\\/li>\\n<li>Fix: Errors occur when Debug mode is enabled in Slides widget<\\/li>\\n<li>Fix: Plugin dependency not enforced in Elementor Pro<\\/li>\\n<li>Fix: Console shows deprecation warning in Global Widgets<\\/li>\\n<\\/ul>\\n<h4>3.29.2 - 2025-06-04<\\/h4>\\n<ul>\\n<li>Tweak: Added selectors to Menu widget for compatibility with Optimized Markup experiment<\\/li>\\n<\\/ul>\\n<h4>3.29.1 - 2025-05-28<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Animated Headline widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Price Table widget<\\/li>\\n<\\/ul>\\n<h4>3.29.0 - 2025-05-19<\\/h4>\\n<ul>\\n<li>New: Introduced Cloud Templates - save, manage, and reuse your templates across all your sites from a single cloud library<\\/li>\\n<li>Tweak: Improved accessibility with <code>role<\\/code> attributes in Share Buttons widget<\\/li>\\n<li>Tweak: Improved accessibility by grouping content with <code>role=region<\\/code> in the Video Playlist widget<\\/li>\\n<li>Fix: Focus color is not applied correctly for accessibility in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24239\\\">#24239<\\/a>)<\\/li>\\n<li>Fix: Common scripts loaded late when using the Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.28.4 - 2025-05-05<\\/h4>\\n<ul>\\n<li>Fix: Empty results appeared on the frontend when using the Taxonomy Filter with the \'Avoid Duplicates\' option in Loop Grid widget<\\/li>\\n<li>Fix: Errors occur when Debug mode is enabled and the Optimized Markup experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.28.3 - 2025-04-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved sidebar navigation flow on the Elementor Home screen<\\/li>\\n<\\/ul>\\n<h4>3.28.2 - 2025-03-30<\\/h4>\\n<ul>\\n<li>Fix: Default Elementor animation shown for logged-out users when using an &quot;External URL&quot; source in Lottie widget<\\/li>\\n<\\/ul>\\n<h4>3.28.1 - 2025-03-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Animated Headline and Form widgets<\\/li>\\n<\\/ul>\\n<h4>3.28.0 - 2025-03-17<\\/h4>\\n<ul>\\n<li>Tweak: Ensured File Upload field styles are overridden by global styles in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11651\\\">#11651<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17223\\\">#17223<\\/a>)<\\/li>\\n<li>Tweak: Updated Scroll Snap description to clarify incompatibility with animations and motion effects<\\/li>\\n<li>Tweak: Prevented special characters from being encoded in the email subject field in Form widget<\\/li>\\n<li>Tweak: Loaded module styles within the module instead of registering them in <code>plugin.php<\\/code><\\/li>\\n<li>Tweak: Updated minimum required WordPress version to 6.5<\\/li>\\n<li>Tweak: Improved keyboard accessibility for menus in Editor Top Bar<\\/li>\\n<li>Tweak: Made the edit button accessible in the Template widget<\\/li>\\n<li>Tweak: Optimized Form widget performance by caching field assets <code>using get_style_depends()<\\/code> and <code>get_script_depends()<\\/code> methods<\\/li>\\n<li>Tweak: Added Text Shadow control in Testimonial Carousel, Call to Action and Animated Headline widgets<\\/li>\\n<li>Fix: Button icon alignment breaks when Inline Font Icons feature is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16077\\\">#16077<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16511\\\">#16511<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17692\\\">#17692<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17922\\\">#17922<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19253\\\">#19253<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19370\\\">#19370<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21236\\\">#21236<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21844\\\">#21844<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28080\\\">#28080<\\/a>)<\\/li>\\n<li>Fix: Dropdown caret color did not follow menu item color when Inline Font Icons feature is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17500\\\">#17500<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18466\\\">#18466<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21664\\\">#21664<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24929\\\">#24929<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28064\\\">#28064<\\/a>)<\\/li>\\n<li>Fix: Page doesn\'t scroll up when a coupon error notice appears in Checkout widget<\\/li>\\n<\\/ul>\\n<h4>3.27.7 - 2025-03-13<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<\\/ul>\\n<h4>3.27.6 - 2025-03-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Template Condition<\\/li>\\n<\\/ul>\\n<h4>3.27.5 - 2025-03-03<\\/h4>\\n<ul>\\n<li>Fix: The <code>wp_trigger_error<\\/code> function causes the site to crash instead of triggering a warning when used with ACF text<\\/li>\\n<\\/ul>\\n<h4>3.27.4 - 2025-02-16<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Screenshots module<\\/li>\\n<li>Security Fix: Improved code security enforcement in Query control<\\/li>\\n<li>Fix: ACF <code>true_false<\\/code> field causing a fatal error when used as a dynamic tag with third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/30170\\\">#30170<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.27.3 - 2025-02-06<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Stripe Button widget<\\/li>\\n<\\/ul>\\n<h4>3.27.2 - 2025-02-03<\\/h4>\\n<ul>\\n<li>Fix: Value type configuration issue causing errors when using ACF<\\/li>\\n<li>Fix: Hide content on responsive breakpoint option is not working on WordPress Menu widget when Optimized Markup experiment is activated<\\/li>\\n<\\/ul>\\n<h4>3.27.1 - 2025-01-27<\\/h4>\\n<ul>\\n<li>Tweak: Increased the number of items allowed in Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<li>Security Fix: Improved code security enforcement in Global widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Admin settings<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Empty custom fields are missing in the Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<\\/ul>\\n<h4>3.27.0 - 2025-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Removed the <code>elementor-widget-container<\\/code> div from the Menu, Loop, Table of Contents, Form, and Hotspot widgets as part of the Optimized Markup experiment to improve HTML structure<\\/li>\\n<li>Tweak: Reduced DOM size by optimizing the submit button markup in Search widget<\\/li>\\n<li>Tweak: Moved style loading to the head instead of the footer to improve CLS<\\/li>\\n<li>Tweak: Enabled conditional loading of Swiper.js based on widget dependencies to reduce unnecessary assets and improve page load times<\\/li>\\n<li>Tweak: Standardized navigation elements like arrows and bullets across all carousel and slider widgets for improved accessibility<\\/li>\\n<li>Tweak: Improved accessibility when the submit button has only an icon and no text in Search widget<\\/li>\\n<li>Tweak: Removed <code>load_plugin_textdomain()<\\/code> function from Elementor Pro<\\/li>\\n<\\/ul>\\n<h4>3.26.3 - 2025-01-07<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Search widget<\\/li>\\n<li>Fix: Height issues cause slideshow thumbnails to display incorrectly in Media Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29663\\\">#29663<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.2 - 2024-12-22<\\/h4>\\n<ul>\\n<li>Fix: Menu items are not clickable in various scenarios in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29191\\\">#29191<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.1 - 2024-12-17<\\/h4>\\n<ul>\\n<li>Fix: Restore deprecated <code>Plugin::enqueue_styles()<\\/code> function to avoid errors with 3rd party plugins<\\/li>\\n<\\/ul>\\n<h4>3.26.0 - 2024-12-16<\\/h4>\\n<ul>\\n<li>New: Introducing dynamic content support for Off-canvas in Loop Grid widget templates - enabling seamless display of additional content dynamically (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29049\\\">#29049<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28935\\\">#28935<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7106\\\">#7106<\\/a>)<\\/li>\\n<li>New: AdBlock Detection trigger for Popups - display targeted popups for visitors using ad blockers<\\/li>\\n<li>New: Added Reload Page link action for Dynamic Tags<\\/li>\\n<li>Tweak: Added &quot;Space Between Dots&quot; control to Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2526\\\">#2526<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3277\\\">#3277<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21697\\\">#21697<\\/a>)<\\/li>\\n<li>Tweak: Replaced hidden <code>elementor-screen-only<\\/code> div with <code>aria-label<\\/code> attributes<\\/li>\\n<li>Tweak: Removed <code>elementor-widget-container<\\/code> div from Elementor widgets as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Optimize popup styling by loading it only when necessary<\\/li>\\n<li>Tweak: Updated Gap between slides control to support only PX units in Carousel widget<\\/li>\\n<li>Tweak: Removed the dependency between the Tabs handler and the Menu handler<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> in Carousel widgets<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=carousel<\\/code> to carousel wrapper<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=slide<\\/code> to slide wrapper<\\/li>\\n<li>Tweak: Optimized carousel widgets markup as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Updated minimum required Safari version to 15.5<\\/li>\\n<li>Tweak: Facebook widgets are no longer supported on mobile due to Facebook functionality changes<\\/li>\\n<li>Fix: Motion Effects sticky feature is not working when Scroll Snap is enabled<\\/li>\\n<li>Fix: Custom Image Resolution option is not working in Gallery widget<\\/li>\\n<li>Fix: \'Reading Settings\' unexpectedly reduces the number of posts displayed when using the Archive with Pagination setting<\\/li>\\n<li>Fix: Step Form does not scroll to the top when the first field is not an input field in Form widget<\\/li>\\n<li>Fix: Display Condition feature is available without an active Elementor license in Floating Elements<\\/li>\\n<li>Fix: Background options of Flip Box in Loop Grid widget are not working when images are added using ACF Dynamic Tags<\\/li>\\n<li>Fix: Dropdown icon in the Select field of the Form widget is cut off when the Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Incompatibility between Form widget and WPML when using Nested Elements<\\/li>\\n<li>Fix: Performance issues when changing the title name in the Menu widget<\\/li>\\n<li>Fix: Warnings appear when Element Caching is set to Inactive in Carousel widgets<\\/li>\\n<li>Fix: Swiper styling missing from Lightbox inside Gallery widgets<\\/li>\\n<\\/ul>\\n<h4>3.25.5 - 2024-12-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Popup overlay shown for non-logged users even when disabled<\\/li>\\n<\\/ul>\\n<h4>3.25.4 - 2024-11-20<\\/h4>\\n<ul>\\n<li>Tweak: Improved Global Widget loading method to enhance performance<\\/li>\\n<\\/ul>\\n<h4>3.25.3 - 2024-11-13<\\/h4>\\n<ul>\\n<li>Fix: Nested Elements are activated even when the Container experiment is inactive<\\/li>\\n<\\/ul>\\n<h4>3.25.2 - 2024-11-03<\\/h4>\\n<ul>\\n<li>Fix: Styling issues affecting popup layout when using a Dynamic Tag to open the popup<\\/li>\\n<li>Fix: Image captions are not displaying for non-logged-in users in Media Carousel widget<\\/li>\\n<li>Fix: Custom Add to Cart widget with Quantity enabled causes critical error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29159\\\">#29159<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.25.1 - 2024-10-31<\\/h4>\\n<ul>\\n<li>Fix: Multiple Custom Add to Cart widgets on the same page are adding the same product<\\/li>\\n<\\/ul>\\n<h4>3.25.0 - 2024-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added pagination functionality to the Live Results in Search widget<\\/li>\\n<li>Tweak: Added Anchor Offset control to allow precise positioning when scrolling to anchor links on the page<\\/li>\\n<li>Tweak: Load motion effects styles only when they are in use<\\/li>\\n<li>Tweak: Load sticky styles only when they are in use<\\/li>\\n<li>Tweak: Load popup styles only when they are in use<\\/li>\\n<li>Tweak: Load theme builder styles only when they are in use<\\/li>\\n<li>Tweak: Load transition styles for Call to Action and Gallery widgets only when they are in use<\\/li>\\n<li>Tweak: Load styles for Form widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for WooCommerce widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Theme Elements widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Carousel widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Pricing widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Floating Elements separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Link in Bio widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load minified CSS in the Loop Builder\'s Call to Action button in the Editor<\\/li>\\n<li>Tweak: Removed &quot;Payments&quot; module styles<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Payapl widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Stripe widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Merged &quot;Form Submissions&quot; feature into the version and moved it to the Advanced tab<\\/li>\\n<li>Tweak: Merged &quot;Display Conditions&quot; into the version<\\/li>\\n<li>Fix: Missing translation string for the empty message in the Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27580\\\">#27580<\\/a>)<\\/li>\\n<li>Fix: Local Storage and Session Storage were being used even when popups were not in use (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7151\\\">#7151<\\/a>)<\\/li>\\n<li>Fix: Masonry layout is not working when pagination is set to &quot;Load More&quot; or &quot;Infinite Scroll&quot; in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23684\\\">#23684<\\/a>)<\\/li>\\n<li>Fix: Extra gap between widgets on the frontend when using Off-canvas widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27706\\\">#27706<\\/a>)<\\/li>\\n<li>Fix: Pagination and custom queries did not work when the Posts Widget was saved as a Global Widget or used via shortcode<\\/li>\\n<li>Fix: Lightbox videos are missing controls and displayed at the wrong size in Media Carousel widget<\\/li>\\n<li>Fix: Pagination options with Individual Pagination not working as expected in Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Justified or Masonry layouts for the Pro Gallery would not display images on the frontend when inserted via nested tabs<\\/li>\\n<li>Fix: Error issue in the Loop Grid widget when used in theme parts with the Taxonomy Filter<\\/li>\\n<li>Fix: Removed the focus ring after clicking to open the Off Canvas inside the Editor<\\/li>\\n<li>Fix: Background gradient colors from the dynamic color tag values are not rendering on the frontend<\\/li>\\n<li>Fix: Excessive database requests generated by the Loop Grid widget<\\/li>\\n<li>Fix: Colors from Dynamic Tags were not rendered on the frontend<\\/li>\\n<li>Fix: Display issue in the Menu widget caused by the \'Native Intersection Observer API<\\/li>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget<\\/li>\\n<li>Fix: Content Width control inside the Mega Menu is displaying an empty value<\\/li>\\n<\\/ul>\\n<h4>3.24.4 - 2024-10-09<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<\\/ul>\\n<h4>3.24.3 - 2024-10-01<\\/h4>\\n<ul>\\n<li>Fix: Floating Elements template not loading when Single Page template is set with All Singular condition<\\/li>\\n<li>Fix: Form field styles not loading properly in various scenarios<\\/li>\\n<\\/ul>\\n<h4>3.24.2 - 2024-09-18<\\/h4>\\n<ul>\\n<li>Fix: Icons not displaying when Inline SVG Icons experiment is active in Link In Bio widgets and Floating Elements<\\/li>\\n<\\/ul>\\n<h4>3.24.1 - 2024-09-12<\\/h4>\\n<ul>\\n<li>Fix: Widget styles not loading correctly on front causing alignment inconsistencies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28676\\\">#28676<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.24.0 - 2024-09-10<\\/h4>\\n<ul>\\n<li>New: Introducing support for Variable Fonts - allowing for more dynamic and flexible text styling (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6703\\\">#6703<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11333\\\">#11333<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19277\\\">#19277<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25485\\\">#25485<\\/a>)<\\/li>\\n<li>Tweak: Added \'Structure\' indication for widgets with Display Conditions applied (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28027\\\">#28027<\\/a>)<\\/li>\\n<li>Tweak: Added a new option for setting the live search results width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28280\\\">#28280<\\/a>)<\\/li>\\n<li>Tweak: Improved Honeypot field functionality in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28480\\\">#28480<\\/a>)<\\/li>\\n<li>Tweak: Added options to \'Copy\', \'Paste\', and \'Clear\' Display Conditions in Context Menu<\\/li>\\n<li>Tweak: Improved performance of the Menu widget when using Dynamic Tags in the URL field<\\/li>\\n<li>Tweak: Improved performance when using Dynamic Tags in Nested Elements<\\/li>\\n<li>Tweak: Added the option for users to disable Akismet for specific Elementor forms<\\/li>\\n<li>Tweak: Adjusted URL structure when presenting the Search Archive page in Search widget<\\/li>\\n<li>Tweak: Added the \'Create Template\' button in Search widget<\\/li>\\n<li>Tweak: Added an option to enable the \'Loader\' animation while live results are loading in Search widget<\\/li>\\n<li>Tweak: Load share buttons compatibility styles only when they are in use<\\/li>\\n<li>Tweak: Load dialog styles only when they are in use<\\/li>\\n<li>Tweak: Load global widget styles only during Editor preview<\\/li>\\n<li>Tweak: Conditionally load widget styles only when the widgets are used<\\/li>\\n<li>Tweak: Load styles for CTA hover animations only when they are in use<\\/li>\\n<li>Tweak: Load notes styles only when the WordPress Toolbar is displayed<\\/li>\\n<li>Tweak: Split <code>animations.min.css<\\/code> into multiple CSS files and load them conditionally<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Stable status<\\/li>\\n<li>Tweak: Merged Taxonomy Filter feature into the version<\\/li>\\n<li>Tweak: Merged Search feature into the version<\\/li>\\n<li>Tweak: Added a note to \'Current Query\' explaining the impact of WordPress settings on pagination within Archives<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for the Off-Canvas widget<\\/li>\\n<li>Fix: Manual Selection option is not excluding sticky posts in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18689\\\">#18689<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23331\\\">#23331<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28179\\\">#28179<\\/a>)<\\/li>\\n<li>Fix: Template ID does not change according to the imported Loop Item (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21404\\\">#21404<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22202\\\">#22202<\\/a>)<\\/li>\\n<li>Fix: \'Editing Mode\' for the Off-canvas was not functioning correctly in certain scenarios<\\/li>\\n<li>Fix: Added definition to <code>clear_custom_image_sizes<\\/code> hook to prevent edge case issues<\\/li>\\n<li>Fix: Flickering issue with search result buttons when closing results using the keyboard escape key in Search widget<\\/li>\\n<li>Fix: Theme Style settings for buttons were overriding the text styling in Search widget<\\/li>\\n<li>Fix: Nesting menu inside another menu causes functionality issues in Menu widget<\\/li>\\n<li>Fix: Error when using array as custom fields value in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.23.3 - 2024-08-05<\\/h4>\\n<ul>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28194\\\">#28194<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.23.2 - 2024-07-29<\\/h4>\\n<ul>\\n<li>Fix: Horizontal scroll bar appearing on the page when using Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28087\\\">#28087<\\/a>)<\\/li>\\n<li>Fix: Dropdown area disappearing in certain scenarios in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.23.1 - 2024-07-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in link URL<\\/li>\\n<\\/ul>\\n<h4>3.23.0 - 2024-07-15<\\/h4>\\n<ul>\\n<li>New: Search Widget with Live Results - Display live search results as visitors type into the search box, enhancing user experience and engagement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27664\\\">#27664<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24931\\\">#24931<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21459\\\">#21459<\\/a>)<\\/li>\\n<li>Tweak: Renamed <code>width<\\/code> to <code>Min width<\\/code> and added <code>Max width<\\/code> control to Hotspot tooltips (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18930\\\">#18930<\\/a>)<\\/li>\\n<li>Tweak: Applied a logical DOM order to the Mega Menu widget to improve accessibility<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for WordPress Menu widget<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for Menu widget<\\/li>\\n<li>Tweak: Added a bottom option to the Image Position control in Call to Action widget<\\/li>\\n<li>Fix: Missing version string in included CSS query string when Improved CSS Loading is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21879\\\">#21879<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23821\\\">#23821<\\/a>)<\\/li>\\n<li>Fix: Form submission icon message does not display correctly when Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Save and Close button position issues in the conditions screen in Theme Builder.<\\/li>\\n<li>Fix: Focus appears on the first element when using the mouse to open Off-Canvas <\\/li>\\n<li>Fix: Links to Elementor Settings are broken in various locations<\\/li>\\n<li>Fix: Conditions field not showing all relevant conditions in Theme Builder<\\/li>\\n<li>Fix: Off-Canvas flickering in sticky containers with exit animations triggered by sticky effects<\\/li>\\n<\\/ul>\\n<h4>3.22.1 - 2024-06-24<\\/h4>\\n<ul>\\n<li>Fix: Styling of Global widgets not loading when Element Caching experiment is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27704\\\">#27704<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.22.0 - 2024-06-16<\\/h4>\\n<ul>\\n<li>New: Introducing Off-Canvas widget - create engaging and creative layers triggered by a link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6225\\\">#6225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21769\\\">#21769<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25770\\\">#25770<\\/a>)<\\/li>\\n<li>Tweak: Added option to remove \'User IP\' and \'User Agent\' from the form submissions metadata (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14285\\\">#14285<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>waypoints.js<\\/code> library with the native Intersection Observer API<\\/li>\\n<li>Tweak: Extended Alignment and Position capabilities in Form widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Flip Box widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Call to Action widget<\\/li>\\n<li>Tweak: Optimized Form widget to eliminate unnecessary markup when the button icon is empty<\\/li>\\n<li>Tweak: Optimized Posts widget to eliminate unnecessary markup when Load More button text is empty<\\/li>\\n<li>Tweak: Remove <code>placeholder<\\/code> arguments from URL controls<\\/li>\\n<li>Tweak: Implemented CSS logical properties to Icon Position in Form, Posts and Menu Cart widgets<\\/li>\\n<li>Tweak: Activated Display Conditions feature for existing sites<\\/li>\\n<li>Tweak: Activated Taxonomy Filter feature for existing sites<\\/li>\\n<li>Tweak: Added functionality to delay the running of the ready triggers on inner elements<\\/li>\\n<li>Fix: Icons are now part of the link in the Menu Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24298\\\">#24298<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25112\\\">#25112<\\/a>)<\\/li>\\n<li>Fix: <code>all: unset<\\/code> assigned to buttons cause focus issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24322\\\">#24322<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25448\\\">#25448<\\/a>)<\\/li>\\n<li>Fix: Menu cart SVG icon disappears on front when Optimized Control Loading experiment is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27342\\\">#27342<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro auto-updates are not working on multisite networks (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12615\\\">#12615<\\/a>)<\\/li>\\n<li>Fix: PHP error appears in the editor when using Loop Grid in an archive template<\\/li>\\n<li>Fix: UI glitch on Icon Position control in Paypal and Stripe Buttons widgets<\\/li>\\n<li>Fix: Icon Position control RTL issue in Hotspot widget<\\/li>\\n<li>Fix: Manual Selection &quot;Include By&quot; Query doesn\'t work with product categories<\\/li>\\n<\\/ul>\\n<h4>3.21.3 - 2024-05-20<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Loop Grid widget<\\/li>\\n<li>Fix: License expired affects the Display Conditions functionality in the front end<\\/li>\\n<\\/ul>\\n<h4>3.21.2 - 2024-04-30<\\/h4>\\n<ul>\\n<li>Fix: Special characters are not displayed correctly when using the Excerpt widget in Loop template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25860\\\">#25860<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.21.1 - 2024-04-24<\\/h4>\\n<ul>\\n<li>Fix: Excerpt Length setting doesn\'t function correctly for languages with non-English characters in Post Excerpt widget<\\/li>\\n<\\/ul>\\n<h4>3.21.0 - 2024-04-15<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Taxonomy Query - Enabling the display of post and product categories and tags within Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21372\\\">#21372<\\/a>)<\\/li>\\n<li>Tweak: Optimized Hotspot widget to prevent rendering when no image is provided<\\/li>\\n<li>Tweak: Optimized Blockquote widget to eliminate unnecessary markup when devoid of content<\\/li>\\n<li>Tweak: Optimized Template widget to eliminate unnecessary markup when no template is selected<\\/li>\\n<li>Tweak: Optimized Code Highlight widget to eliminate unnecessary markup when there is no content<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Portfolio widget<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Author Avatar image alt text in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25440\\\">#25440<\\/a>)<\\/li>\\n<li>Tweak: Notes feature merged to version<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Profile Picture alt text in Author widget<\\/li>\\n<li>Fix: Display issue on hover state in WooCommerce Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.20.3 - 2024-04-10<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issue between the My Account widget and other third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20986\\\">#20986<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.20.2 - 2024-03-26<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Post Navigation widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Gallery widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.20.1 - 2024-03-20<\\/h4>\\n<ul>\\n<li>Fix: Strengthened code integrity in deprecated Woo Single Element widget<\\/li>\\n<li>Fix: PHP error notice appears when using Loop Grid with the Taxonomy Filter widgets<\\/li>\\n<\\/ul>\\n<h4>3.20.0 - 2024-03-11<\\/h4>\\n<ul>\\n<li>Tweak: Implemented OR logic in the Display Conditions feature<\\/li>\\n<li>Tweak: Added X and Threads social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25299\\\">#25299<\\/a>)<\\/li>\\n<li>Tweak: Added Archive Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Alt dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Caption dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Bio dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Email dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Website dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Page Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Post Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Comments Number rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Archive Author rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added support for WordPress Custom Fields in Display Conditions feature<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23875\\\">#23875<\\/a>)<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Login widget<\\/li>\\n<li>Tweak: Added additional style controls in the Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration option in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21295\\\">#21295<\\/a>)<\\/li>\\n<li>Tweak: Added Transition Duration to button in Flip Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Author Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to List in Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Login widget<\\/li>\\n<li>Tweak: Added Transition Duration in Post Navigation widget<\\/li>\\n<li>Tweak: Added Transition Duration Show More in Video Playlist widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Form widget<\\/li>\\n<li>Tweak: Removed separator-none argument from all Editor controls<\\/li>\\n<li>Tweak: Add <code>&lt;time&gt;<\\/code> wrapper for Date and Time items in Post Info widget<\\/li>\\n<li>Tweak: Page Transitions feature merged to version<\\/li>\\n<li>Tweak: Scroll Snap feature merged to version<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Beta status and activated for new sites<\\/li>\\n<li>Tweak: Promoted Taxonomy Filter feature to beta status and activated for new sites<\\/li>\\n<li>Fix: Page Transitions feature and Load Font Awesome 4 Support cause a console error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18885\\\">#18885<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19334\\\">#19334<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21082\\\">#21082<\\/a>)<\\/li>\\n<li>Fix: Added better output escaping in Taxonomy Filter widget<\\/li>\\n<\\/ul>\\n<h4>3.19.3 - 2024-02-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved Loop CSS loading structure in Loop Grid item<\\/li>\\n<li>Security Fix: Addressed security weaknesses in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.19.2 - 2024-02-07<\\/h4>\\n<ul>\\n<li>Fix: Export data inconsistencies when using form actions in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.19.1 - 2024-02-05<\\/h4>\\n<ul>\\n<li>Fix: Enqueuing non-existing Loop Template CSS file in Loop Item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24959\\\">#24959<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>3.19.0 - 2024-01-29<\\/h4>\\n<ul>\\n<li>New: Introducing Display Conditions for Elements - allowing users to customize content visibility based on specified criteria (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4246\\\">#4246<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21152\\\">#21152<\\/a>)<\\/li>\\n<li>New: Implemented Akismet Integration for enhanced spam protection and security in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11401\\\">#11401<\\/a>)<\\/li>\\n<li>New: Introducing Permissions functionality to Element Manager - providing users with enhanced control over access and management capabilities<\\/li>\\n<li>Tweak: Added styling option for dropdown indicator in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21907\\\">#21907<\\/a>)<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Implemented CSS logical properties in WordPress Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Reviews widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Countdown widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Updated <code>jquery.smartmenus.js<\\/code> version from 1.1.1 to 1.2.0<\\/li>\\n<li>Fix: Dynamic Background Image does not load on the first Loop Item in a Loop Grid (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21489\\\">#21489<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22368\\\">#22368<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23085\\\">#23085<\\/a>)<\\/li>\\n<li>Fix: History panel deprecation notices in console log<\\/li>\\n<li>Fix: Second Pro rollback installed the latest version instead of the specifically selected older version<\\/li>\\n<li>Fix: Incorrect position of the dropdown content when applying entrance animation in Menu Widget<\\/li>\\n<li>Fix: UX issues when using in-place editing in Menu widget<\\/li>\\n<li>Fix: Pagination with page reload is not working when used with the Taxonomy filter and Loop Grid widget in Archive template<\\/li>\\n<\\/ul>\\n<h4>3.18.2 - 2023-12-20<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Price List widget<\\/li>\\n<li>Fix: Error messages related to loop filter appear on front when using PHP 8.X and <code>WP_DEBUG<\\/code> is true<\\/li>\\n<\\/ul>\\n<h4>3.18.1 - 2023-12-06<\\/h4>\\n<ul>\\n<li>Fix: No results appeared when reloading the page with deep link and de-selecting terms in Taxonomy Filter widget<\\/li>\\n<li>Fix: No results appeared when filtering the Uncategorized category in Filter Taxonomy widget<\\/li>\\n<li>Fix: Notes still available when the Notes feature is deactivated<\\/li>\\n<\\/ul>\\n<h4>3.18.0 - 2023-12-04<\\/h4>\\n<ul>\\n<li>Tweak: Added the ability to upload files as attachments to emails in the File Upload field in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4868\\\">#4868<\\/a>)<\\/li>\\n<li>Tweak: Introduced the capability to design and edit the empty state in the Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24261\\\">#24261<\\/a>)<\\/li>\\n<li>Tweak: Implemented the option to close the menu content area with a click anywhere on the screen in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22686\\\">#22686<\\/a>)<\\/li>\\n<li>Tweak: Improve scrolling behavior inside the content area when there is not enough space in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22712\\\">#22712<\\/a>)<\\/li>\\n<li>Tweak: Expanded breakpoint options in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22488\\\">#22488<\\/a>)<\\/li>\\n<li>Tweak: Added Logical Combination control in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added additional units to Horizontal and Vertical padding for Dropdown in WordPress Menu widget<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in Loop Carousel and Carousel widgets<\\/li>\\n<li>Tweak: Added various HTML Tag controls in Video Playlist widget<\\/li>\\n<li>Tweak: Added responsive control to navigation size in Slides, Reviews, Media Carousel and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Search Form widget<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added Multiple Selection control in Taxonomy Filter widget<\\/li>\\n<li>Fix: Deprecated notice when using ${var} in strings instead of {$var} with PHP 8.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23927\\\">#23927<\\/a>)<\\/li>\\n<li>Fix: Dropdown indicator position issue in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23947\\\">#23947<\\/a>)<\\/li>\\n<li>Fix: Dynamic Tags are not available when choosing \'self-hosted\' source in Video widget<\\/li>\\n<li>Fix: Telephone field placeholder is aligned to the left in RTL websites in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.17.1 - 2023-11-01<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Code Highlight, Form, Lottie, Price List, and Video Playlist widgets<\\/li>\\n<\\/ul>\\n<h4>3.17.0 - 2023-10-25<\\/h4>\\n<ul>\\n<li>Tweak: Added AJAX pagination option or seamless page navigation between content in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>)<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Post widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Loop Grid widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Added a None option to the breakpoint options in Menu widget<\\/li>\\n<li>Tweak: Added a horizontal scrolling option in Menu widget<\\/li>\\n<li>Tweak: Upgraded minimum required PHP version to 7.3<\\/li>\\n<li>Tweak: Improved accessibility when minimize button is disabled in Table of Content widget<\\/li>\\n<li>Fix: Table of Content widget without icons displays <code>undefined<\\/code> error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17523\\\">#17523<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17768\\\">#17768<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18463\\\">#18463<\\/a>)<\\/li>\\n<li>Fix: Hover behavior issues on menu items in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23430\\\">#23430<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22431\\\">#22431<\\/a>)<\\/li>\\n<li>Fix: Links inside Loop Carousel are not working on initial load in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23705\\\">#23705<\\/a>)<\\/li>\\n<li>Fix: Popups accessible navigation adds outlines to the wrong first focusable element<\\/li>\\n<li>Fix: Dropdown area aligned to the left side of the screen if contains Tabs widget in Menu widget<\\/li>\\n<li>Fix: Content horizontal position not aligning correctly when used with carousel widgets in Menu widget<\\/li>\\n<li>Fix: Accessibility errors in PageSpeed Insights in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.16.2 - 2023-09-20<\\/h4>\\n<ul>\\n<li>Fix: Fit to Content dropdown position calculation is incorrect in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23808\\\">#23808<\\/a>)<\\/li>\\n<li>Fix: Reverted hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23804\\\">#23804<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.16.1 - 2023-09-14<\\/h4>\\n<ul>\\n<li>Fix: Dynamic tag for ACF image field is not working as expected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23757\\\">#23757<\\/a>)<\\/li>\\n<li>Fix: Sticky functionality affects padding values in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23758\\\">#23758<\\/a>)<\\/li>\\n<li>Fix: HTML list issues for padding and margin in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.16.0 - 2023-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23607\\\">#23607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22554\\\">#22554<\\/a>)<\\/li>\\n<li>Fix: \'Fallback: Recent Posts\' option malfunctions in the Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21436\\\">#21436<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23259\\\">#23259<\\/a>)<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22056\\\">#22056<\\/a>)<\\/li>\\n<li>Tweak: Used appropriate image <code>alt<\\/code> in Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17680\\\">#17680<\\/a>)<\\/li>\\n<li>Tweak: Optimized Scroll Snap functionality when using Container widget<\\/li>\\n<li>Tweak: Enhanced Elementor Role Manager functionality when using Containers<\\/li>\\n<li>Tweak: Added Notes feature to the Editor Top Bar<\\/li>\\n<li>Tweak: Replace CSS <code>float<\\/code> with other layouts in the Editor<\\/li>\\n<li>Tweak: Upgraded HTML Structure for the Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Carousel and Menu widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to a link in Posts widget<\\/li>\\n<li>Tweak: Loop Builder feature merged to version<\\/li>\\n<li>Fix: Addressed inconsistency in hover effect durations between icon, dropdown indicator colors, and text colors in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22376\\\">#22376<\\/a>)<\\/li>\\n<li>Fix: Slides break if the parent container is set to HTML A tag in Loop Carousel and Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22678\\\">#22678<\\/a>)<\\/li>\\n<li>Fix: The icon size setting is not affecting uploaded SVG icons in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22372\\\">#22372<\\/a>)<\\/li>\\n<li>Fix: Taxonomy filter does not work with slug in foreign characters (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23315\\\">#23315<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Dynamic Tags<\\/li>\\n<li>Fix: Sticky container incorrectly adjusts its width when transitioning from a smaller breakpoint to a larger one within the Editor<\\/li>\\n<\\/ul>\\n<h4>3.15.1 - 2023-08-09<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.15.0 - 2023-07-31<\\/h4>\\n<ul>\\n<li>New: Introducing Taxonomy Filter widget - Empower visitors to seamlessly filter listings in Loop Grids based on taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3140\\\">#3140<\\/a>)<\\/li>\\n<li>Tweak: Added an &quot;Offset Sides&quot; functionality in Carousel and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21114\\\">#21114<\\/a>)<\\/li>\\n<li>Tweak: Modified the size of the Publish button in the Editor Top Bar feature (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22472\\\">#22472<\\/a>)<\\/li>\\n<li>Tweak: Improved Ajax permissions functionality for better security enforcement<\\/li>\\n<li>Tweak: Added option for pagination custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added option for navigation custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added additional styling options for navigation in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added labels to shortcode column in WordPress admin<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in Menu widget<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in My Account widget<\\/li>\\n<li>Tweak: Improved panel UI in Video Playlist widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Price List widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Slides widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Flip Box widget<\\/li>\\n<li>Tweak: Added &quot;Description HTML Tag&quot; in Call To Action widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Share Buttons widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: WooCommerce Status page failed to recognize Elementor WooCommerce widgets<\\/li>\\n<li>Fix: Pagination does not work inside single templates when using Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Incorrect saving of WooCommerce page settings in Elementor site settings under certain scenarios<\\/li>\\n<\\/ul>\\n<h4>3.14.1 - 2023-06-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved navigation on touch devices in Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22827\\\">#22827<\\/a>)<\\/li>\\n<li>Fix: Missing navigation arrows on lightbox in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22870\\\">#22870<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.14.0 - 2023-06-19<\\/h4>\\n<ul>\\n<li>New: Introducing Carousel widget - Infinite design possibilities, and nesting capabilities (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2587\\\">#2587<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>Tweak: Added Static Item Position functionality to Alternate template in Loop Grid widget<\\/li>\\n<li>Tweak: Added visual indication of Page Parts<\\/li>\\n<li>Tweak: Added dividers option between menu items in Menu widget<\\/li>\\n<li>Tweak: Changed the HTML structure of Pagination and Navigation in Loop Carousel and Nested Carousel widgets<\\/li>\\n<li>Tweak: Added shop page in WooCommerce Pages section in Site Settings<\\/li>\\n<li>Tweak: Added Text Shadow, Box Shadow and Padding control to button in Call to Action widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Video Playlist widget<\\/li>\\n<li>Tweak: Added <code>alt<\\/code> attribute to images in Video Playlist widget<\\/li>\\n<li>Tweak: Replaced select control with choose control for Flip Direction control in Flip Box widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Use <code>media_types<\\/code> array in Media controls<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11193\\\">#11193<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19871\\\">#19871<\\/a>)<\\/li>\\n<li>Fix: Responsive settings for templates don\'t work as expected when Additional Custom Breakpoints feature is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16819\\\">#16819<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19394\\\">#19394<\\/a>)<\\/li>\\n<li>Fix: Inner containers are not presented as expected in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21813\\\">#21813<\\/a>)<\\/li>\\n<li>Fix: Popup width does not support percentages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22413\\\">#22413<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x throws errors when using WooCommerce Ajax response (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22199\\\">#22199<\\/a>)<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22789\\\">#22789<\\/a>)<\\/li>\\n<li>Fix: Order by Price doesn\'t work for the Latest products or Manual Selection in Products widget<\\/li>\\n<li>Fix: Dropdown indicator icon is not vertically aligned to the text when using icon in Menu Widget<\\/li>\\n<li>Fix: Mixed content warning in the console for Video Playlist widget<\\/li>\\n<li>Fix: Preview settings are not presented as expected after first save in Loop Template<\\/li>\\n<li>Fix: Not-crawlable link error in Video Playlist widget<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Logo widget<\\/li>\\n<li>Fix: Focus state issue on page load when using Table of Content widget<\\/li>\\n<\\/ul>\\n<h4>3.13.2 - 2023-05-22<\\/h4>\\n<ul>\\n<li>Fix: Hover settings not working as expected on Touch-Enabled devices in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22258\\\">#22258<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Security Fix: Addressed security weaknesses in access management related functions<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22367\\\">#22367<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\\">#20256<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\\">#21675<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added \'Active item state\' to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget\'s width when Content Width is set to Fit to Content in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\\">#13678<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\\">#17941<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the \'Gap between slides\' control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added &quot;Form Validation&quot; control to Form widget<\\/li>\\n<li>Tweak: Updated custom messages in the Form widget<\\/li>\\n<li>Tweak: Improved accessibility in various elements in Gallery widget<\\/li>\\n<li>Tweak: Form Submissions feature merged to version<\\/li>\\n<li>Tweak: Loop feature promoted to Stable status<\\/li>\\n<li>Tweak: Page Transitions feature promoted to Stable status<\\/li>\\n<li>Tweak: Improved accessibility in filter bar in Gallery widget<\\/li>\\n<li>Tweak: Remove unused <code>aspect-ratio-*<\\/code> CSS classes<\\/li>\\n<li>Fix: Not all active breakpoints appear under &quot;Advanced Rules&quot; in popup publish settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17020\\\">#17020<\\/a>)<\\/li>\\n<li>Fix: Dynamic background image and video is not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.11.7 - 2023-03-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in WooCommerce components<\\/li>\\n<\\/ul>\\n<h4>3.11.6 - 2023-03-14<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in Author Box and Countdown widgets<\\/li>\\n<\\/ul>\\n<h4>3.11.5 - 2023-03-12<\\/h4>\\n<ul>\\n<li>Fix: Hamburger Menu Toggle not showing if breakpoint is set to Tablet Extra in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21003\\\">#21003<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.4 - 2023-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Prevented SVG file upload for better security enforcement in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.11.3 - 2023-02-26<\\/h4>\\n<ul>\\n<li>Fix: Error message appears when submitting a form placed below Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21432\\\">#21432<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x compatibility issues in various places<\\/li>\\n<\\/ul>\\n<h4>3.11.2 - 2023-02-22<\\/h4>\\n<ul>\\n<li>Fix: Save &amp; Back handle becomes inaccessible in various scenarios cases in Loop Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\\">#21316<\\/a>)<\\/li>\\n<li>Fix: Can\'t edit page when using \'Content Tabs\' and \'Section\' options in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.11.1 - 2023-02-15<\\/h4>\\n<ul>\\n<li>Fix: Featured Image dynamic tag is not working in Background images (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21313\\\">#21313<\\/a>)<\\/li>\\n<li>Fix: Time zone is not correct in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17485\\\">#17485<\\/a>)<\\/li>\\n<li>Fix: File upload field is not working in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21341\\\">#21341<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21314\\\">#21314<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.0 - 2023-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Carousel widget - Create powerful &amp; repeating loop templates and populate each one with dynamic content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>New: Added Date and Time Range option to Advanced Rules in Popup<\\/li>\\n<li>Tweak: Improved accessibility when opening and closing a popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9788\\\">#9788<\\/a>)<\\/li>\\n<li>Tweak: Improved accessibility of full-screen mode in Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19907\\\">#19907<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility support to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5861\\\">#5861<\\/a>)<\\/li>\\n<li>Tweak: Add <code>aria-label<\\/code> to read more link in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13784\\\">#13784<\\/a>)<\\/li>\\n<li>Tweak: Use <code>aspect-ratio<\\/code> property instead of CSS trick in Media Carousel widget<\\/li>\\n<li>Tweak: Updated translation string in Stripe widget<\\/li>\\n<li>Fix: Masonry and Columns controls are not working as expected with responsive in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20670\\\">#20670<\\/a>)<\\/li>\\n<li>Fix: Invalid attributes names in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17400\\\">#17400<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working as expected in various widgets<\\/li>\\n<li>Fix: Form fields order is not presented correctly when exported to CSV in Form Submissions<\\/li>\\n<li>Fix: Dynamic background image and video are not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.10.3 - 2023-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Added introduction video to loop item information modal in Theme Builder<\\/li>\\n<li>Fix: PHP 8.x throws errors and notices in some cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21087\\\">#21087<\\/a>)<\\/li>\\n<li>Fix: Infinite Scroll and Load on click pagination are not working as expected in Archive template<\\/li>\\n<li>Fix: Show row even when values do not exist in Form Submissions<\\/li>\\n<\\/ul>\\n<h4>3.10.2 - 2023-01-17<\\/h4>\\n<ul>\\n<li>Fix: Updated compatibility tag for Elementor v3.10<\\/li>\\n<\\/ul>\\n<h4>3.10.1 - 2023-01-09<\\/h4>\\n<p>Fix: Preview Could not be loaded error message appears on pages containing the Loop Grid in a header or footer templates<\\/p>\\n<h4>3.10.0 - 2023-01-09<\\/h4>\\n<ul>\\n<li>New: Added new dynamic tag for due date in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7737\\\">#7737<\\/a>)<\\/li>\\n<li>Tweak: Added <code>modified<\\/code> and <code>comment_count<\\/code> to Order By in posts query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11159\\\">#11159<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>footer<\\/code> tag in Blockquote and Comments widgets for better semantics<\\/li>\\n<li>Fix: Compatibility issue in Imagify Media Library filters due to <code>_elementor_is_screenshot<\\/code> meta filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19988\\\">#19988<\\/a>)<\\/li>\\n<li>Fix: Hotspot Widget label icon height issues when Inline Font Icons experiment is active<\\/li>\\n<li>Fix: Editing glitch when using two loop grid widgets on the same page with the same loop item template<\\/li>\\n<li>Fix: Equal height is not working when using sections in Loop Grid widget<\\/li>\\n<li>Fix: Large amount of menu items are not appearing correctly on a mobile device in Nav Menu widget<\\/li>\\n<li>Fix: Featured Image does not change dynamically when using infinite\\/click pagination in Loop Grid widget<\\/li>\\n<li>Fix: Removed action call of non-existent <code>display_empty_cart_template()<\\/code> method in Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.9.2 - 2022-12-21<\\/h4>\\n<ul>\\n<li>Fix: JS events do not trigger in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20708\\\">#20708<\\/a>)<\\/li>\\n<li>Fix: PHP Errors appear when not using the toggle menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18636\\\">#18636<\\/a>)<\\/li>\\n<li>Fix: Popups\' backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn\'t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to \'Show up to X times\' advanced rule in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added \'Equal height\' functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-20<\\/h4>\\n<ul>\\n<li>Fix: Z-index issues when applying sticky to Container<\\/li>\\n<li>Fix: Error message appears on front with Editor and Shop Manager roles when using the Loop Builder widget<\\/li>\\n<\\/ul>\\n<h4>3.8.1 - 2022-11-06<\\/h4>\\n<ul>\\n<li>Fix: Sticky inner section is not staying in the column when applying sticky option in Sections (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20203\\\">#20203<\\/a>)<\\/li>\\n<li>Fix: Post Title widget located in a loop item template disappears when enabling the hide title option inside page settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20207\\\">#20207<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20255\\\">#20255<\\/a>)<\\/li>\\n<li>Fix: ACF Dynamic data not rendering correctly in various scenarios (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20235\\\">#20235<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20258\\\">#20258<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20277\\\">#20277<\\/a>)<\\/li>\\n<li>Fix: Z-index issues when applying sticky to Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20227\\\">#20227<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.8.0 - 2022-10-30<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Builder as a beta status experiment - Create powerful &amp; repeating loop templates and populate each one with dynamic content and design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4440\\\">#4440<\\/a>)<\\/li>\\n<li>Tweak: Add <code>wp_body_open()<\\/code> to header in Header template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11562\\\">#11562<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15828\\\">#15828<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13089\\\">#13089<\\/a>)<\\/li>\\n<li>Tweak: Added support border-radius option to the Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14316\\\">#14316<\\/a>)<\\/li>\\n<li>Tweak: Import\\/Export CLI and UI mechanisms were merged into a unified service<\\/li>\\n<li>Tweak: User with no permission to Notes cannot be mentioned in a note<\\/li>\\n<li>Tweak: User with no permission to view a post cannot be mentioned in a note<\\/li>\\n<li>Tweak: Notes was added to the right click context-menu<\\/li>\\n<li>Tweak: Notes panel can be resizable<\\/li>\\n<li>Tweak: Notes panel can be dragged outside of the canvas in responsive mode in the editor<\\/li>\\n<li>Tweak: Updated form validation messages translation strings in Form widget<\\/li>\\n<li>Tweak: Updated translators comments<\\/li>\\n<li>Tweak: Theme Builder logo and Title should be clickable<\\/li>\\n<li>Tweak: Reduced API requests and DB calls on non-write setup<\\/li>\\n<li>Tweak: Added media queries to the Table of Contents widget<\\/li>\\n<li>Fix: Sticky option is not working as expected in various scenarios in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19540\\\">#19540<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19618\\\">#19618<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19777\\\">#19777<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19827\\\">#19827<\\/a>)<\\/li>\\n<li>Fix: Mixed Content errors on HTTPS in Video Playlist Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18895\\\">#18895<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18945\\\">#18945<\\/a>)<\\/li>\\n<li>Fix: Note\'s timestamp is being updated according to the last activity in Notes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label\'s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\\">#19553<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.7.4 - 2022-08-29<\\/h4>\\n<ul>\\n<li>Tweak: PHP 5.6 Is deprecated<\\/li>\\n<li>Fix: Triangle icon is not being displayed in the Select field when Inline Font Icons Experiment is active in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18598\\\">#18598<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19495\\\">#19495<\\/a>)<\\/li>\\n<li>Fix: The page jumps or flickers to the video playlist on page reload in Video Playlist Widget<\\/li>\\n<\\/ul>\\n<h4>3.7.3 - 2022-07-31<\\/h4>\\n<ul>\\n<li>Tweak: Improved license mechanism for correct validation<\\/li>\\n<li>Fix: Sticky option causes unexpected results when using the Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>)<\\/li>\\n<li>Fix: Price list, Portfolio, Flip Box and Gallery widgets disappear when the direction is set to column in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18880\\\">#18880<\\/a>)<\\/li>\\n<li>Fix: Quotes character is showing up as <code>&amp;quot;<\\/code> when editing a note in Notes<\\/li>\\n<\\/ul>\\n<h4>3.7.2 - 2022-06-15<\\/h4>\\n<ul>\\n<li>Tweak: Applied optimized file handling in various modules<\\/li>\\n<li>Fix: Related posts query options are missing in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18633\\\">#18633<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18641\\\">#18641<\\/a>)<\\/li>\\n<li>Fix: Menu Cart Icon is not being displayed on all browsers when Inline Font Icons Experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17705\\\">#17705<\\/a>)<\\/li>\\n<li>Fix: Gallery widget is not working as expected in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18408\\\">#18408<\\/a>)<\\/li>\\n<li>Fix: Flip box is not visible when the direction is set to Row in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18413\\\">#18413<\\/a>)<\\/li>\\n<li>Fix: Portfolio widget is not visible when dragged into &quot;Row&quot; direction Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17653\\\">#17653<\\/a>)<\\/li>\\n<li>Fix: Menu cart is open automatically in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18629\\\">#18629<\\/a>)<\\/li>\\n<li>Fix: PHP error is being shown the license is expired in License screen<\\/li>\\n<\\/ul>\\n<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\\">#10607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\\">#18007<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\\">#14357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\\">#13151<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\\">#6691<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\\">#11774<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\\">#5760<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\\">#17767<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles &amp; Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn\'t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel &amp; Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn\'t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn\'t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook\'s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475]\\\">#11475<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">#10690<\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging  Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\\">#11596<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\\">#5975<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\\">#11023<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\\">#10932<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\\">#10967<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\\">#11000<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can\'t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\\">#5716<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\\">#3642<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\\">#9225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn\'t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don\'t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code>&lt;br&gt;<\\/code> tags in Single theme template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\\">#9927<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code>&lt;p&gt;<\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=\\\"navigation\\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn\'t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn\'t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\\">#1898<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\\">#3103<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\\">#4279<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\\">#7947<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\\">#5993<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder\'s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder\'s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\\">#8672<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\\">#8213<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\\">#6039<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when \'Hide Title\' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it\'s not from WooCommerce (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\\">#7711<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\\">#7306<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\\">#6871<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\\">#6876<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it\'s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>&lt;IfModule&gt;<\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won\'t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\\">#290<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for \'View Cart\' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\\">#4220<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\\">More Info<\\/a>) (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it\'s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it\'s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent\'s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it\'s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\\">#483<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\\">#653<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\\">#2761<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\\">#2623<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\\">#2109<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\\">#2061<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\\">#3196<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\\">#2041<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\\">#1482<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\\">#1693<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn\'t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in \'typing\' and \'clip\' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don\'t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\\">#1234<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorProModulesFormsClassesAction_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\\">#1271<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can\'t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - \'Link apply on\' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"4.0.1\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.9.4\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvZHJzYXJhaCIsImRvd25sb2FkX2JldGEiOmZhbHNlLCJmaWxlX2tleSI6IjEiLCJpYXQiOjE3NzU1NzA4MjgsImV4cCI6MTc3NTY1NzIyOH0.VWSlRUxIsPzQmP6FzCF7Mv56EIHjbrp4uYAbUWdmJYw\\/package_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvZHJzYXJhaCIsImRvd25sb2FkX2JldGEiOmZhbHNlLCJmaWxlX2tleSI6IjEiLCJpYXQiOjE3NzU1NzA4MjgsImV4cCI6MTc3NTY1NzIyOH0.VWSlRUxIsPzQmP6FzCF7Mv56EIHjbrp4uYAbUWdmJYw\\/package_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/assets.elementor.com\\/miscellaneous\\/v1\\/images\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.7.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.9.4\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvZHJzYXJhaCIsImlhdCI6MTc3NTU3MDgyOCwiZXhwIjoxNzc1NjU3MjI4fQ.NTc4QHYeg6arNLH66tjR-ukKBwu_LZO9k8TtLa1xjSs\\/previous_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvZHJzYXJhaCIsImlhdCI6MTc3NTU3MDgyOCwiZXhwIjoxNzc1NjU3MjI4fQ.NTc4QHYeg6arNLH66tjR-ukKBwu_LZO9k8TtLa1xjSs\\/previous_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/assets.elementor.com\\/miscellaneous\\/v1\\/images\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]},\"cloud\":false}\";}', 'off');
INSERT INTO `wpd_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1362, 'bmip_to_be_uploaded', 'a:3:{s:14:\"current_upload\";a:0:{}s:5:\"queue\";a:0:{}s:6:\"failed\";a:0:{}}', 'auto'),
(1363, '_transient_bmi_latest_size_plugins', '104978663', 'on'),
(1364, '_transient_bmi_latest_size_uploads', '1864551', 'on'),
(1365, '_transient_bmi_latest_size_themes', '28265344', 'on'),
(1366, '_transient_bmi_latest_size_contents_others', '149', 'on'),
(1368, '_transient_bmi_latest_size_database', '18359792', 'on'),
(1369, 'bmi_required_space', '189152100', 'auto'),
(1354, '_new_bb_banner', 'a:3:{s:9:\"dismissed\";b:0;s:12:\"dismissed_at\";i:0;s:11:\"using_since\";i:1775571271;}', 'auto'),
(1355, 'bmi_gdrive_banner_dismissed', '1', 'auto'),
(1356, '_bmi_backup_banner', 'a:3:{s:9:\"dismissed\";b:0;s:12:\"dismissed_at\";N;s:15:\"first_loaded_at\";i:1775571271;}', 'auto'),
(1358, '_transient_timeout_bmi_cron_share_attempted', '1775574873', 'off'),
(1357, 'bmi_sk_keepalive', 'XR8kwRhq4O2JkHw9TRSlRAeR8jEVhRXI', 'auto'),
(1373, 'elementor_atomic_cache_validity__base', 'a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"69d511770c15d\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}', 'off'),
(1360, 'bmi_cron_new_domain_done', '1', 'auto'),
(1361, 'BMI::STORAGE::LOCAL::PATH', '/home/mrarqpph/public_html/drsarah/wp-content/backup-migration-M2sa7Fcik1', 'auto'),
(1359, '_transient_bmi_cron_share_attempted', '1', 'off'),
(1376, 'elementor_atomic_styles_fonts-base', 'a:1:{i:0;s:7:\"Poppins\";}', 'off'),
(1372, 'elementor_atomic_cache_validity__component-styles-related-posts', 'a:2:{s:5:\"state\";b:0;s:8:\"children\";a:4:{i:45;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:262;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:392;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:10;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}}}', 'off'),
(1374, 'elementor_atomic_cache_validity__global', 'a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"69d511770c689\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}', 'off'),
(1375, 'elementor_atomic_cache_validity__local', 'a:2:{s:5:\"state\";b:0;s:8:\"children\";a:4:{i:45;a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"69d511770cb67\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}i:262;a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"69d511770cf70\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}i:392;a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"69d511770d390\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}i:10;a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"69d5135f5e648\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}}}', 'off'),
(343, 'pp_elementor_modules', 'a:62:{i:0;s:21:\"pp-advanced-accordion\";i:1;s:16:\"pp-advanced-menu\";i:2;s:16:\"pp-advanced-tabs\";i:3;s:8:\"pp-album\";i:4;s:14:\"pp-author-list\";i:5;s:14:\"pp-breadcrumbs\";i:6;s:17:\"pp-business-hours\";i:7;s:19:\"pp-business-reviews\";i:8;s:10:\"pp-buttons\";i:9;s:14:\"pp-card-slider\";i:10;s:13:\"pp-categories\";i:11;s:9:\"pp-charts\";i:12;s:17:\"pp-content-reveal\";i:13;s:17:\"pp-content-ticker\";i:14;s:12:\"pp-countdown\";i:15;s:10:\"pp-counter\";i:16;s:10:\"pp-coupons\";i:17;s:10:\"pp-devices\";i:18;s:10:\"pp-divider\";i:19;s:15:\"pp-dual-heading\";i:20;s:16:\"pp-fancy-heading\";i:21;s:6:\"pp-faq\";i:22;s:10:\"pp-flipbox\";i:23;s:14:\"pp-google-maps\";i:24;s:11:\"pp-hotspots\";i:25;s:12:\"pp-icon-list\";i:26;s:18:\"pp-image-accordion\";i:27;s:19:\"pp-image-comparison\";i:28;s:16:\"pp-image-gallery\";i:29;s:15:\"pp-image-slider\";i:30;s:11:\"pp-info-box\";i:31;s:20:\"pp-info-box-carousel\";i:32;s:12:\"pp-info-list\";i:33;s:13:\"pp-info-table\";i:34;s:12:\"pp-instafeed\";i:35;s:13:\"pp-login-form\";i:36;s:16:\"pp-logo-carousel\";i:37;s:12:\"pp-logo-grid\";i:38;s:18:\"pp-magazine-slider\";i:39;s:14:\"pp-modal-popup\";i:40;s:20:\"pp-offcanvas-content\";i:41;s:14:\"pp-onepage-nav\";i:42;s:8:\"pp-posts\";i:43;s:13:\"pp-price-menu\";i:44;s:16:\"pp-pricing-table\";i:45;s:12:\"pp-promo-box\";i:46;s:15:\"pp-random-image\";i:47;s:9:\"pp-recipe\";i:48;s:20:\"pp-registration-form\";i:49;s:13:\"pp-review-box\";i:50;s:11:\"pp-showcase\";i:51;s:10:\"pp-sitemap\";i:52;s:8:\"pp-table\";i:53;s:20:\"pp-table-of-contents\";i:54;s:14:\"pp-team-member\";i:55;s:23:\"pp-team-member-carousel\";i:56;s:15:\"pp-testimonials\";i:57;s:14:\"pp-tiled-posts\";i:58;s:11:\"pp-timeline\";i:59;s:9:\"pp-toggle\";i:60;s:8:\"pp-video\";i:61;s:16:\"pp-video-gallery\";}', 'auto'),
(193, 'edd_sl_1380e07af6fd2fb8cf7095284dd275e9', 'a:2:{s:7:\"timeout\";i:1775383668;s:5:\"value\";s:480:\"{\"new_version\":false,\"stable_version\":false,\"name\":\"\",\"slug\":\"powerpack-elements\",\"url\":\"\\/?changelog=1\",\"last_updated\":\"0000-00-00 00:00:00\",\"homepage\":false,\"package\":\"\",\"download_link\":\"\",\"sections\":{\"description\":\"\",\"changelog\":\"\"},\"banners\":{\"high\":false,\"low\":false},\"icons\":[],\"msg\":\"No license key has been provided.\",\"description\":[\"\"],\"changelog\":[\"\"],\"plugin\":\"powerpack-elements\\/powerpack-elements.php\",\"id\":\"powerpack-elements\\/powerpack-elements.php\",\"tested\":null}\";}', 'off'),
(196, 'pp_license_key', '820357b27bedb9bf31cf47c98f5a04b1', 'auto'),
(197, 'pp_license_status', 'valid', 'auto'),
(352, 'elementor_pro_theme_builder_conditions', 'a:3:{s:5:\"popup\";a:1:{i:392;a:1:{i:0;s:15:\"include/general\";}}s:6:\"footer\";a:1:{i:262;a:1:{i:0;s:15:\"include/general\";}}s:6:\"header\";a:1:{i:45;a:1:{i:0;s:15:\"include/general\";}}}', 'auto'),
(1377, '_elementor_assets_data', 'a:1:{s:3:\"svg\";a:1:{s:9:\"font-icon\";a:7:{s:16:\"far-calendar-alt\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:448;s:6:\"height\";i:512;s:4:\"path\";s:855:\"M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z\";s:3:\"key\";s:16:\"far-calendar-alt\";}s:7:\"version\";s:6:\"5.15.3\";}s:14:\"fas-caret-down\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:320;s:6:\"height\";i:512;s:4:\"path\";s:119:\"M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z\";s:3:\"key\";s:14:\"fas-caret-down\";}s:7:\"version\";s:6:\"5.15.3\";}s:22:\"fas-angle-double-right\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:448;s:6:\"height\";i:512;s:4:\"path\";s:378:\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\";s:3:\"key\";s:22:\"fas-angle-double-right\";}s:7:\"version\";s:6:\"5.15.3\";}s:13:\"fab-instagram\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:448;s:6:\"height\";i:512;s:4:\"path\";s:922:\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\";s:3:\"key\";s:13:\"fab-instagram\";}s:7:\"version\";s:6:\"5.15.3\";}s:18:\"fas-map-marker-alt\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:384;s:6:\"height\";i:512;s:4:\"path\";s:244:\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\";s:3:\"key\";s:18:\"fas-map-marker-alt\";}s:7:\"version\";s:6:\"5.15.3\";}s:12:\"far-envelope\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"path\";s:494:\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\";s:3:\"key\";s:12:\"far-envelope\";}s:7:\"version\";s:6:\"5.15.3\";}s:13:\"fas-phone-alt\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"path\";s:264:\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\";s:3:\"key\";s:13:\"fas-phone-alt\";}s:7:\"version\";s:6:\"5.15.3\";}}}}', 'auto'),
(1035, '_transient_health-check-site-status-result', '{\"good\":23,\"recommended\":1,\"critical\":1}', 'on'),
(351, '_astra_customizer_published_timestamps', 'a:7:{i:0;i:1775373644;i:1;i:1775373734;i:2;i:1775373783;i:3;i:1775374170;i:4;i:1775374257;i:5;i:1775541723;i:6;i:1775541817;}', 'off'),
(358, 'astra-color-palettes', 'a:5:{s:14:\"currentPalette\";s:9:\"palette_1\";s:8:\"palettes\";a:4:{s:9:\"palette_1\";a:9:{i:0;s:7:\"#0b6623\";i:1;s:7:\"#d2b48c\";i:2;s:7:\"#08203e\";i:3;s:7:\"#656565\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#f5f5dc\";i:6;s:7:\"#111111\";i:7;s:7:\"#D1D5DB\";i:8;s:7:\"#111111\";}s:9:\"palette_2\";a:9:{i:0;s:7:\"#0067FF\";i:1;s:7:\"#005EE9\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#364151\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#E7F6FF\";i:6;s:7:\"#070614\";i:7;s:7:\"#D1DAE5\";i:8;s:7:\"#222222\";}s:9:\"palette_3\";a:9:{i:0;s:7:\"#6528F7\";i:1;s:7:\"#5511F8\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F2F0FE\";i:6;s:7:\"#0D0614\";i:7;s:7:\"#D8D8F5\";i:8;s:7:\"#222222\";}s:9:\"palette_4\";a:9:{i:0;s:7:\"#0085FF\";i:1;s:7:\"#0177E3\";i:2;s:7:\"#FFFFFF\";i:3;s:7:\"#E7F6FF\";i:4;s:7:\"#212A37\";i:5;s:7:\"#0F172A\";i:6;s:7:\"#4F5B62\";i:7;s:7:\"#070614\";i:8;s:7:\"#222222\";}}s:7:\"presets\";a:11:{s:3:\"Oak\";a:9:{i:0;s:7:\"#0067FF\";i:1;s:7:\"#005EE9\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#364151\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#E7F6FF\";i:6;s:7:\"#070614\";i:7;s:7:\"#D1DAE5\";i:8;s:7:\"#222222\";}s:5:\"Viola\";a:9:{i:0;s:7:\"#6528F7\";i:1;s:7:\"#5511F8\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F2F0FE\";i:6;s:7:\"#0D0614\";i:7;s:7:\"#D8D8F5\";i:8;s:7:\"#222222\";}s:5:\"Cedar\";a:9:{i:0;s:7:\"#DD183B\";i:1;s:7:\"#CC1939\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#3A3A3A\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FFEDE6\";i:6;s:7:\"#140609\";i:7;s:7:\"#FFD1BF\";i:8;s:7:\"#222222\";}s:6:\"Willow\";a:9:{i:0;s:7:\"#54B435\";i:1;s:7:\"#379237\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#2F3B40\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#EDFBE2\";i:6;s:7:\"#0C1406\";i:7;s:7:\"#D5EAD8\";i:8;s:7:\"#222222\";}s:4:\"Lily\";a:9:{i:0;s:7:\"#DCA54A\";i:1;s:7:\"#D09A40\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#4A4A4A\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FAF5E5\";i:6;s:7:\"#141004\";i:7;s:7:\"#F0E6C5\";i:8;s:7:\"#222222\";}s:4:\"Rose\";a:9:{i:0;s:7:\"#FB5FAB\";i:1;s:7:\"#EA559D\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FCEEF5\";i:6;s:7:\"#140610\";i:7;s:7:\"#FAD8E9\";i:8;s:7:\"#222222\";}s:4:\"Sage\";a:9:{i:0;s:7:\"#1B9C85\";i:1;s:7:\"#178E79\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#EDF6EE\";i:6;s:7:\"#06140C\";i:7;s:7:\"#D4F3D7\";i:8;s:7:\"#222222\";}s:5:\"Flare\";a:9:{i:0;s:7:\"#FD9800\";i:1;s:7:\"#E98C00\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FEF9E1\";i:6;s:7:\"#141006\";i:7;s:7:\"#F9F0C8\";i:8;s:7:\"#222222\";}s:5:\"Maple\";a:9:{i:0;s:7:\"#FF6210\";i:1;s:7:\"#F15808\";i:2;s:7:\"#1C0D0A\";i:3;s:7:\"#353535\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FEF1E4\";i:6;s:7:\"#140B06\";i:7;s:7:\"#E5D7D1\";i:8;s:7:\"#222222\";}s:5:\"Birch\";a:9:{i:0;s:7:\"#737880\";i:1;s:7:\"#65696F\";i:2;s:7:\"#151616\";i:3;s:7:\"#393C40\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F6F6F6\";i:6;s:7:\"#232529\";i:7;s:7:\"#F1F0F0\";i:8;s:7:\"#222222\";}s:4:\"Dark\";a:9:{i:0;s:7:\"#0085FF\";i:1;s:7:\"#0177E3\";i:2;s:7:\"#FFFFFF\";i:3;s:7:\"#E7F6FF\";i:4;s:7:\"#212A37\";i:5;s:7:\"#0F172A\";i:6;s:7:\"#4F5B62\";i:7;s:7:\"#070614\";i:8;s:7:\"#222222\";}}s:11:\"presetNames\";a:4:{s:9:\"palette_1\";N;s:9:\"palette_2\";s:3:\"Oak\";s:9:\"palette_3\";s:5:\"Viola\";s:9:\"palette_4\";s:4:\"Dark\";}s:4:\"flag\";b:1;}', 'on'),
(752, 'elementor_clear_cache', '', 'auto'),
(753, 'elementor_reset_api_data', '', 'auto'),
(746, 'elementor_log', 'a:10:{s:32:\"ea1cc5635cedc39d4c66bc455f63366f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-04-05 09:38:42\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"3.25.4\";s:2:\"to\";s:5:\"4.0.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-04-05 09:38:42\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"3.25.4\";s:2:\"to\";s:5:\"4.0.1\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"ddd47ee4eeedc8fd165b83efa2545d70\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-04-05 09:38:43\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"elementor-pro::elementor_pro_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-04-05 09:38:43\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"elementor-pro::elementor_pro_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"9c8ed8a8ef4247b41eb9346a562a7db8\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-04-05 09:38:43\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:48:\"Elementor Pro/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-04-05 09:38:43\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:48:\"Elementor Pro/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"af8a8e520dc524c9f6d589ddc3df1737\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-04-05 09:38:43\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor Pro/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-04-05 09:38:43\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:50:\"Elementor Pro/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"e39764f3a0091b9b4deb879d2eeee43f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-04-05 09:38:43\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:70:\"Elementor Pro/Upgrades - _v_3_30_0_post_navigation_inline_icons Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-04-05 09:38:43\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:70:\"Elementor Pro/Upgrades - _v_3_30_0_post_navigation_inline_icons Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"f6c7eb2c1da115b7dda49e904fc93a1f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-04-05 09:38:43\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:72:\"Elementor Pro/Upgrades - _v_3_30_0_post_navigation_inline_icons Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-04-05 09:38:43\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:72:\"Elementor Pro/Upgrades - _v_3_30_0_post_navigation_inline_icons Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"f65bdbc2ee3ea4ebba9aaafd653b1f1e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-04-05 09:38:43\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"3.25.4\";s:2:\"to\";s:5:\"4.0.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-04-05 09:38:43\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"3.25.4\";s:2:\"to\";s:5:\"4.0.1\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"17c37fd7a956d5e4fc137d4235ff1dbf\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-04-05 10:28:00\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:1706:\"Uncaught WpOrg\\Requests\\Exception\\Http\\Status403: 403 Forbidden in /home/mrarqpph/public_html/drsarah/wp-content/plugins/elementor/modules/cloud-library/module.php:190\nStack trace:\n#0 /home/mrarqpph/public_html/drsarah/wp-content/plugins/elementor/modules/cloud-library/module.php(55): Elementor\\Modules\\CloudLibrary\\Module-&gt;is_screenshot_proxy_mode()\n#1 /home/mrarqpph/public_html/drsarah/wp-content/plugins/elementor/core/base/module.php(86): Elementor\\Modules\\CloudLibrary\\Module-&gt;__construct()\n#2 /home/mrarqpph/public_html/drsarah/wp-content/plugins/elementor/core/modules-manager.php(64): Elementor\\Core\\Base\\Module::instance()\n#3 /home/mrarqpph/public_html/drsarah/wp-content/plugins/elementor/includes/plugin.php(704): Elementor\\Core\\Modules_Manager-&gt;__construct()\n#4 /home/mrarqpph/public_html/drsarah/wp-content/plugins/elementor/includes/plugin.php(622): Elementor\\Plugin-&gt;init_components()\n#5 /home/mrarqpph/public_html/drsarah/wp-includes/class-wp-hook.php(341): Elementor\\Plugin-&gt;init()\n#6 /home/mrarqpph/public_html/drsarah/wp-includes/class-wp-hook.php(365): WP_Hook-&gt;apply_filters()\n#7 /home/mrarqpph/public_html/drsarah/wp-includes/plugin.php(522): WP_Hook-&gt;do_action()\n#8 /home/mrarqpph/public_html/drsarah/wp-settings.php(742): do_action()\n#9 /home/mrarqpph/public_html/drsarah/wp-config.php(104): require_once(&#039;/home/mrarqpph/...&#039;)\n#10 /home/mrarqpph/public_html/drsarah/wp-load.php(50): require_once(&#039;/home/mrarqpph/...&#039;)\n#11 /home/mrarqpph/public_html/drsarah/wp-blog-header.php(13): require_once(&#039;/home/mrarqpph/...&#039;)\n#12 /home/mrarqpph/public_html/drsarah/index.php(17): require(&#039;/home/mrarqpph/...&#039;)\n#13 {main}\n  thrown\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:7;s:14:\"\0*\0times_dates\";a:7:{i:0;s:19:\"2026-04-05 10:28:00\";i:1;s:19:\"2026-04-05 10:28:00\";i:2;s:19:\"2026-04-05 10:28:00\";i:3;s:19:\"2026-04-07 11:27:21\";i:4;s:19:\"2026-04-07 11:27:21\";i:5;s:19:\"2026-04-07 11:27:21\";i:6;s:19:\"2026-04-07 11:27:21\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:5:\"error\";s:7:\"message\";s:1645:\"Uncaught WpOrg\\Requests\\Exception\\Http\\Status403: 403 Forbidden in /home/mrarqpph/public_html/drsarah/wp-content/plugins/elementor/modules/cloud-library/module.php:190\nStack trace:\n#0 /home/mrarqpph/public_html/drsarah/wp-content/plugins/elementor/modules/cloud-library/module.php(55): Elementor\\Modules\\CloudLibrary\\Module->is_screenshot_proxy_mode()\n#1 /home/mrarqpph/public_html/drsarah/wp-content/plugins/elementor/core/base/module.php(86): Elementor\\Modules\\CloudLibrary\\Module->__construct()\n#2 /home/mrarqpph/public_html/drsarah/wp-content/plugins/elementor/core/modules-manager.php(64): Elementor\\Core\\Base\\Module::instance()\n#3 /home/mrarqpph/public_html/drsarah/wp-content/plugins/elementor/includes/plugin.php(704): Elementor\\Core\\Modules_Manager->__construct()\n#4 /home/mrarqpph/public_html/drsarah/wp-content/plugins/elementor/includes/plugin.php(622): Elementor\\Plugin->init_components()\n#5 /home/mrarqpph/public_html/drsarah/wp-includes/class-wp-hook.php(341): Elementor\\Plugin->init()\n#6 /home/mrarqpph/public_html/drsarah/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters()\n#7 /home/mrarqpph/public_html/drsarah/wp-includes/plugin.php(522): WP_Hook->do_action()\n#8 /home/mrarqpph/public_html/drsarah/wp-settings.php(742): do_action()\n#9 /home/mrarqpph/public_html/drsarah/wp-config.php(104): require_once(\'/home/mrarqpph/...\')\n#10 /home/mrarqpph/public_html/drsarah/wp-load.php(50): require_once(\'/home/mrarqpph/...\')\n#11 /home/mrarqpph/public_html/drsarah/wp-blog-header.php(13): require_once(\'/home/mrarqpph/...\')\n#12 /home/mrarqpph/public_html/drsarah/index.php(17): require(\'/home/mrarqpph/...\')\n#13 {main}\n  thrown\";s:4:\"file\";s:96:\"/home/mrarqpph/public_html/drsarah/wp-content/plugins/elementor/modules/cloud-library/module.php\";s:4:\"line\";i:190;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:96:\"/home/mrarqpph/public_html/drsarah/wp-content/plugins/elementor/modules/cloud-library/module.php\";s:7:\"\0*\0line\";i:190;}s:32:\"62a008db21ceb2eae4447678b545942b\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-04-05 10:28:15\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:81:\"hexdec(): Passing null to parameter #1 ($hex_string) of type string is deprecated\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:22;s:14:\"\0*\0times_dates\";a:22:{i:0;s:19:\"2026-04-05 10:28:15\";i:1;s:19:\"2026-04-05 10:39:35\";i:2;s:19:\"2026-04-05 10:56:22\";i:3;s:19:\"2026-04-05 10:57:27\";i:4;s:19:\"2026-04-05 11:19:05\";i:5;s:19:\"2026-04-05 11:52:51\";i:6;s:19:\"2026-04-05 11:55:13\";i:7;s:19:\"2026-04-05 12:24:58\";i:8;s:19:\"2026-04-07 05:51:47\";i:9;s:19:\"2026-04-07 05:56:47\";i:10;s:19:\"2026-04-07 05:58:06\";i:11;s:19:\"2026-04-07 05:59:46\";i:12;s:19:\"2026-04-07 06:05:26\";i:13;s:19:\"2026-04-07 06:12:56\";i:14;s:19:\"2026-04-07 06:28:39\";i:15;s:19:\"2026-04-07 06:33:11\";i:16;s:19:\"2026-04-07 06:50:53\";i:17;s:19:\"2026-04-07 06:54:22\";i:18;s:19:\"2026-04-07 07:09:39\";i:19;s:19:\"2026-04-07 07:17:02\";i:20;s:19:\"2026-04-07 08:08:00\";i:21;s:19:\"2026-04-07 11:25:47\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:81:\"hexdec(): Passing null to parameter #1 ($hex_string) of type string is deprecated\";s:4:\"file\";s:96:\"/home/mrarqpph/public_html/drsarah/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:4:\"line\";i:230;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:96:\"/home/mrarqpph/public_html/drsarah/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:7:\"\0*\0line\";i:230;}s:32:\"694e812599f043426d682503ba65737d\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-04-07 06:51:04\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:30:\"r.startsWith is not a function\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-04-07 06:51:04\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1775544664\";s:7:\"message\";s:30:\"r.startsWith is not a function\";s:3:\"url\";s:87:\"https://mrarif.me/drsarah/wp-content/plugins/elementor/assets/js/admin.min.js?ver=4.0.1\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"42303\";}s:7:\"\0*\0file\";s:87:\"https://mrarif.me/drsarah/wp-content/plugins/elementor/assets/js/admin.min.js?ver=4.0.1\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"42303\";}}', 'off'),
(665, 'auto_core_update_notified', 'a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:21:\"arifwebsols@gmail.com\";s:7:\"version\";s:5:\"6.9.4\";s:9:\"timestamp\";i:1775376327;}', 'off'),
(1310, '_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a', '1775581689', 'off'),
(1311, '_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:8560;}s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4994;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2829;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2799;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:2431;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:2195;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:2168;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1979;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:1761;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1701;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1631;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1573;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1557;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:1550;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1521;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1515;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1398;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:1326;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1319;}s:9:\"gutenberg\";a:3:{s:4:\"name\";s:9:\"gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:5:\"count\";i:1192;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1190;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:1179;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1159;}s:5:\"block\";a:3:{s:4:\"name\";s:5:\"block\";s:4:\"slug\";s:5:\"block\";s:5:\"count\";i:1144;}s:2:\"ai\";a:3:{s:4:\"name\";s:2:\"AI\";s:4:\"slug\";s:2:\"ai\";s:5:\"count\";i:1128;}s:9:\"elementor\";a:3:{s:4:\"name\";s:9:\"elementor\";s:4:\"slug\";s:9:\"elementor\";s:5:\"count\";i:1127;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:1117;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:1094;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:1048;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:1042;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:1024;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:1013;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:988;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:957;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:948;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:943;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:924;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:895;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:848;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:845;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:827;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:797;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:795;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:787;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:784;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:755;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:754;}s:8:\"shipping\";a:3:{s:4:\"name\";s:8:\"shipping\";s:4:\"slug\";s:8:\"shipping\";s:5:\"count\";i:740;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:737;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:734;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:713;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:712;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:703;}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:703;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:697;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:689;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:673;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";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:665;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:656;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:646;}s:6:\"blocks\";a:3:{s:4:\"name\";s:6:\"blocks\";s:4:\"slug\";s:6:\"blocks\";s:5:\"count\";i:646;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:642;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:629;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:628;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:622;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:618;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:617;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:615;}s:8:\"payments\";a:3:{s:4:\"name\";s:8:\"payments\";s:4:\"slug\";s:8:\"payments\";s:5:\"count\";i:614;}s:8:\"checkout\";a:3:{s:4:\"name\";s:8:\"checkout\";s:4:\"slug\";s:8:\"checkout\";s:5:\"count\";i:614;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:600;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:584;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:579;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:578;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";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:570;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:565;}s:7:\"chatbot\";a:3:{s:4:\"name\";s:7:\"chatbot\";s:4:\"slug\";s:7:\"chatbot\";s:5:\"count\";i:556;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:546;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:543;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:542;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:540;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:536;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:536;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:525;}s:6:\"import\";a:3:{s:4:\"name\";s:6:\"import\";s:4:\"slug\";s:6:\"import\";s:5:\"count\";i:515;}s:10:\"automation\";a:3:{s:4:\"name\";s:10:\"automation\";s:4:\"slug\";s:10:\"automation\";s:5:\"count\";i:506;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:503;}s:7:\"gateway\";a:3:{s:4:\"name\";s:7:\"gateway\";s:4:\"slug\";s:7:\"gateway\";s:5:\"count\";i:502;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:494;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:481;}s:5:\"cache\";a:3:{s:4:\"name\";s:5:\"cache\";s:4:\"slug\";s:5:\"cache\";s:5:\"count\";i:480;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:475;}s:9:\"live-chat\";a:3:{s:4:\"name\";s:9:\"live chat\";s:4:\"slug\";s:9:\"live-chat\";s:5:\"count\";i:471;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:464;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:461;}s:8:\"products\";a:3:{s:4:\"name\";s:8:\"products\";s:4:\"slug\";s:8:\"products\";s:5:\"count\";i:459;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:452;}s:11:\"integration\";a:3:{s:4:\"name\";s:11:\"integration\";s:4:\"slug\";s:11:\"integration\";s:5:\"count\";i:451;}}', 'off'),
(585, 'elementor_one_client_id', '016d8b52-451c-42f6-982f-6cce0b79464f', 'off'),
(586, 'elementor_one_client_secret', '4D97221QnnGBUMFufW2KWVBzlo', 'off'),
(587, 'elementor_one_home_url', 'aHR0cHM6Ly9tcmFyaWYubWUvZHJzYXJhaA==', 'off'),
(588, 'elementor_tracker_last_send', '1775375296', 'auto'),
(589, '_transient_timeout_elementor_rollback_versions_4.0.1', '1775980097', 'off'),
(590, '_transient_elementor_rollback_versions_4.0.1', 'a:30:{i:0;s:5:\"4.0.0\";i:1;s:6:\"3.35.9\";i:2;s:6:\"3.35.8\";i:3;s:6:\"3.35.7\";i:4;s:6:\"3.35.6\";i:5;s:6:\"3.35.5\";i:6;s:6:\"3.35.4\";i:7;s:6:\"3.35.3\";i:8;s:6:\"3.35.2\";i:9;s:6:\"3.35.1\";i:10;s:6:\"3.35.0\";i:11;s:6:\"3.34.4\";i:12;s:6:\"3.34.3\";i:13;s:6:\"3.34.2\";i:14;s:6:\"3.34.1\";i:15;s:6:\"3.34.0\";i:16;s:6:\"3.33.6\";i:17;s:6:\"3.33.5\";i:18;s:6:\"3.33.4\";i:19;s:6:\"3.33.3\";i:20;s:6:\"3.33.2\";i:21;s:6:\"3.33.1\";i:22;s:6:\"3.33.0\";i:23;s:6:\"3.32.5\";i:24;s:6:\"3.32.4\";i:25;s:6:\"3.32.3\";i:26;s:6:\"3.32.2\";i:27;s:6:\"3.32.1\";i:28;s:6:\"3.32.0\";i:29;s:6:\"3.31.5\";}', 'off'),
(591, '_transient_timeout_elementor_pro_rollback_versions_3.25.4', '1775980097', 'off'),
(592, '_transient_elementor_pro_rollback_versions_3.25.4', 'a:30:{i:0;s:5:\"4.0.0\";i:1;s:6:\"3.35.1\";i:2;s:6:\"3.35.0\";i:3;s:6:\"3.34.4\";i:4;s:6:\"3.34.3\";i:5;s:6:\"3.34.2\";i:6;s:6:\"3.34.1\";i:7;s:6:\"3.34.0\";i:8;s:6:\"3.33.2\";i:9;s:6:\"3.33.1\";i:10;s:6:\"3.33.0\";i:11;s:6:\"3.32.3\";i:12;s:6:\"3.32.2\";i:13;s:6:\"3.32.1\";i:14;s:6:\"3.32.0\";i:15;s:6:\"3.31.3\";i:16;s:6:\"3.31.2\";i:17;s:6:\"3.31.0\";i:18;s:6:\"3.30.1\";i:19;s:6:\"3.30.0\";i:20;s:6:\"3.29.2\";i:21;s:6:\"3.29.1\";i:22;s:6:\"3.29.0\";i:23;s:6:\"3.28.4\";i:24;s:6:\"3.28.3\";i:25;s:6:\"3.28.2\";i:26;s:6:\"3.28.1\";i:27;s:6:\"3.28.0\";i:28;s:6:\"3.27.7\";i:29;s:6:\"3.27.6\";}', 'off'),
(593, 'elementor_pro_license_key', 'ep-ugLu1rp3BCnkcUMDdaUB1701104650EgD4W7ueft6i', 'auto'),
(594, '_elementor_pro_license_v2_data_fallback', 'a:2:{s:7:\"timeout\";i:1775626974;s:5:\"value\";s:2864:\"{\"expires\":\"2026-11-27 00:00:00\",\"subscription_id\":\"14245656\",\"status\":\"ACTIVE\",\"recurring\":true,\"features\":[\"template_access_level_20\",\"kit_access_level_20\",\"activity-log\",\"breadcrumbs\",\"form\",\"posts\",\"template\",\"countdown\",\"slides\",\"price-list\",\"portfolio\",\"flip-box\",\"price-table\",\"login\",\"share-buttons\",\"theme-post-content\",\"theme-post-title\",\"nav-menu\",\"blockquote\",\"media-carousel\",\"animated-headline\",\"facebook-comments\",\"facebook-embed\",\"facebook-page\",\"facebook-button\",\"testimonial-carousel\",\"post-navigation\",\"search-form\",\"post-comments\",\"author-box\",\"call-to-action\",\"post-info\",\"theme-site-logo\",\"theme-site-title\",\"theme-archive-title\",\"theme-post-excerpt\",\"theme-post-featured-image\",\"archive-posts\",\"theme-page-title\",\"sitemap\",\"reviews\",\"table-of-contents\",\"lottie\",\"code-highlight\",\"hotspot\",\"video-playlist\",\"progress-tracker\",\"section-effects\",\"sticky\",\"scroll-snap\",\"page-transitions\",\"mega-menu\",\"nested-carousel\",\"loop-grid\",\"loop-carousel\",\"theme-builder\",\"elementor_icons\",\"elementor_custom_fonts\",\"dynamic-tags\",\"taxonomy-filter\",\"email\",\"email2\",\"mailpoet\",\"mailpoet3\",\"redirect\",\"header\",\"footer\",\"single-post\",\"single-page\",\"archive\",\"search-results\",\"error-404\",\"loop-item\",\"font-awesome-pro\",\"typekit\",\"gallery\",\"off-canvas\",\"link-in-bio-var-2\",\"link-in-bio-var-3\",\"link-in-bio-var-4\",\"link-in-bio-var-5\",\"link-in-bio-var-6\",\"link-in-bio-var-7\",\"search\",\"size-variable\",\"transitions\",\"pro-interactions\",\"element-manager-permissions\",\"akismet\",\"display-conditions\",\"woocommerce-products\",\"wc-products\",\"woocommerce-product-add-to-cart\",\"wc-elements\",\"wc-categories\",\"woocommerce-product-price\",\"woocommerce-product-title\",\"woocommerce-product-images\",\"woocommerce-product-upsell\",\"woocommerce-product-short-description\",\"woocommerce-product-meta\",\"woocommerce-product-stock\",\"woocommerce-product-rating\",\"wc-add-to-cart\",\"dynamic-tags-wc\",\"woocommerce-product-data-tabs\",\"woocommerce-product-related\",\"woocommerce-breadcrumb\",\"wc-archive-products\",\"woocommerce-archive-products\",\"woocommerce-product-additional-information\",\"woocommerce-menu-cart\",\"woocommerce-product-content\",\"woocommerce-archive-description\",\"paypal-button\",\"woocommerce-checkout-page\",\"woocommerce-cart\",\"woocommerce-my-account\",\"woocommerce-purchase-summary\",\"woocommerce-notices\",\"settings-woocommerce-pages\",\"settings-woocommerce-notices\",\"popup\",\"custom-css\",\"global-css\",\"custom_code\",\"custom-attributes\",\"form-submissions\",\"form-integrations\",\"dynamic-tags-acf\",\"dynamic-tags-pods\",\"dynamic-tags-toolset\",\"editor_comments\",\"stripe-button\",\"role-manager\",\"global-widget\",\"activecampaign\",\"cf7db\",\"convertkit\",\"discord\",\"drip\",\"getresponse\",\"mailchimp\",\"mailerlite\",\"slack\",\"webhook\",\"product-single\",\"product-archive\",\"wc-single-elements\",\"atomic-custom-attributes\",\"atomic-custom-css\"],\"tier\":\"agency\",\"generation\":\"empty\",\"activated\":true,\"success\":true}\";}', 'off'),
(595, '_elementor_pro_license_v2_data', 'a:2:{s:7:\"timeout\";i:1775583774;s:5:\"value\";s:2864:\"{\"expires\":\"2026-11-27 00:00:00\",\"subscription_id\":\"14245656\",\"status\":\"ACTIVE\",\"recurring\":true,\"features\":[\"template_access_level_20\",\"kit_access_level_20\",\"activity-log\",\"breadcrumbs\",\"form\",\"posts\",\"template\",\"countdown\",\"slides\",\"price-list\",\"portfolio\",\"flip-box\",\"price-table\",\"login\",\"share-buttons\",\"theme-post-content\",\"theme-post-title\",\"nav-menu\",\"blockquote\",\"media-carousel\",\"animated-headline\",\"facebook-comments\",\"facebook-embed\",\"facebook-page\",\"facebook-button\",\"testimonial-carousel\",\"post-navigation\",\"search-form\",\"post-comments\",\"author-box\",\"call-to-action\",\"post-info\",\"theme-site-logo\",\"theme-site-title\",\"theme-archive-title\",\"theme-post-excerpt\",\"theme-post-featured-image\",\"archive-posts\",\"theme-page-title\",\"sitemap\",\"reviews\",\"table-of-contents\",\"lottie\",\"code-highlight\",\"hotspot\",\"video-playlist\",\"progress-tracker\",\"section-effects\",\"sticky\",\"scroll-snap\",\"page-transitions\",\"mega-menu\",\"nested-carousel\",\"loop-grid\",\"loop-carousel\",\"theme-builder\",\"elementor_icons\",\"elementor_custom_fonts\",\"dynamic-tags\",\"taxonomy-filter\",\"email\",\"email2\",\"mailpoet\",\"mailpoet3\",\"redirect\",\"header\",\"footer\",\"single-post\",\"single-page\",\"archive\",\"search-results\",\"error-404\",\"loop-item\",\"font-awesome-pro\",\"typekit\",\"gallery\",\"off-canvas\",\"link-in-bio-var-2\",\"link-in-bio-var-3\",\"link-in-bio-var-4\",\"link-in-bio-var-5\",\"link-in-bio-var-6\",\"link-in-bio-var-7\",\"search\",\"size-variable\",\"transitions\",\"pro-interactions\",\"element-manager-permissions\",\"akismet\",\"display-conditions\",\"woocommerce-products\",\"wc-products\",\"woocommerce-product-add-to-cart\",\"wc-elements\",\"wc-categories\",\"woocommerce-product-price\",\"woocommerce-product-title\",\"woocommerce-product-images\",\"woocommerce-product-upsell\",\"woocommerce-product-short-description\",\"woocommerce-product-meta\",\"woocommerce-product-stock\",\"woocommerce-product-rating\",\"wc-add-to-cart\",\"dynamic-tags-wc\",\"woocommerce-product-data-tabs\",\"woocommerce-product-related\",\"woocommerce-breadcrumb\",\"wc-archive-products\",\"woocommerce-archive-products\",\"woocommerce-product-additional-information\",\"woocommerce-menu-cart\",\"woocommerce-product-content\",\"woocommerce-archive-description\",\"paypal-button\",\"woocommerce-checkout-page\",\"woocommerce-cart\",\"woocommerce-my-account\",\"woocommerce-purchase-summary\",\"woocommerce-notices\",\"settings-woocommerce-pages\",\"settings-woocommerce-notices\",\"popup\",\"custom-css\",\"global-css\",\"custom_code\",\"custom-attributes\",\"form-submissions\",\"form-integrations\",\"dynamic-tags-acf\",\"dynamic-tags-pods\",\"dynamic-tags-toolset\",\"editor_comments\",\"stripe-button\",\"role-manager\",\"global-widget\",\"activecampaign\",\"cf7db\",\"convertkit\",\"discord\",\"drip\",\"getresponse\",\"mailchimp\",\"mailerlite\",\"slack\",\"webhook\",\"product-single\",\"product-archive\",\"wc-single-elements\",\"atomic-custom-attributes\",\"atomic-custom-css\"],\"tier\":\"agency\",\"generation\":\"empty\",\"activated\":true,\"success\":true}\";}', 'off'),
(596, 'elementor_notes_db_version', '5', 'auto'),
(597, '_elementor_mixpanel_config', 'a:2:{s:7:\"timeout\";i:1775574343;s:5:\"value\";s:81:\"[{\"sessionReplays\":{\"cloudTemplates\":false,\"coreOnboarding\":false},\"flags\":true}]\";}', 'off'),
(1353, '_irb_h_bn_review', 'a:2:{s:5:\"users\";a:0:{}s:13:\"backup-backup\";i:1775571271;}', 'auto'),
(1349, 'bmi_hotfixes', 'a:5:{i:0;s:13:\"BMI_D17_M1_26\";i:1;s:14:\"BMI_D13_M12_01\";i:2;s:14:\"BMI_D20_M07_01\";i:3;s:18:\"BMI_D17_M12_Y21_02\";i:4;s:18:\"BMI_D13_M08_Y23_01\";}', 'auto'),
(1350, 'bmi_initial_installation_version', '2.1.4', 'auto'),
(1370, 'elementor-custom-breakpoints-files', 'a:31:{s:23:\"custom-apple-webkit.min\";a:1:{s:4:\"time\";i:1775571318;}s:19:\"custom-lightbox.min\";a:1:{s:4:\"time\";i:1775571318;}s:19:\"custom-frontend.min\";a:1:{s:4:\"time\";i:1775571318;}s:27:\"custom-widget-accordion.min\";a:1:{s:4:\"time\";i:1775571318;}s:23:\"custom-widget-alert.min\";a:1:{s:4:\"time\";i:1775571318;}s:26:\"custom-widget-icon-box.min\";a:1:{s:4:\"time\";i:1775571318;}s:27:\"custom-widget-icon-list.min\";a:1:{s:4:\"time\";i:1775571318;}s:27:\"custom-widget-image-box.min\";a:1:{s:4:\"time\";i:1775571318;}s:31:\"custom-widget-image-gallery.min\";a:1:{s:4:\"time\";i:1775571318;}s:26:\"custom-widget-progress.min\";a:1:{s:4:\"time\";i:1775571318;}s:29:\"custom-widget-star-rating.min\";a:1:{s:4:\"time\";i:1775571318;}s:22:\"custom-widget-tabs.min\";a:1:{s:4:\"time\";i:1775571318;}s:24:\"custom-widget-toggle.min\";a:1:{s:4:\"time\";i:1775571318;}s:29:\"custom-widget-nested-tabs.min\";a:1:{s:4:\"time\";i:1775571318;}s:29:\"custom-widget-link-in-bio.min\";a:1:{s:4:\"time\";i:1775571318;}s:34:\"custom-widget-link-in-bio-base.min\";a:1:{s:4:\"time\";i:1775571318;}s:34:\"custom-widget-floating-buttons.min\";a:1:{s:4:\"time\";i:1775571318;}s:36:\"custom-widget-floating-bars-base.min\";a:1:{s:4:\"time\";i:1775571318;}s:37:\"custom-widget-floating-bars-var-3.min\";a:1:{s:4:\"time\";i:1775571318;}s:38:\"custom-widget-contact-buttons-base.min\";a:1:{s:4:\"time\";i:1775571318;}s:39:\"custom-widget-contact-buttons-var-7.min\";a:1:{s:4:\"time\";i:1775571318;}s:39:\"custom-widget-contact-buttons-var-9.min\";a:1:{s:4:\"time\";i:1775571318;}s:40:\"custom-widget-contact-buttons-var-10.min\";a:1:{s:4:\"time\";i:1775571318;}s:31:\"custom-pro-widget-loop-grid.min\";a:1:{s:4:\"time\";i:1775571318;}s:28:\"custom-pro-widget-slides.min\";a:1:{s:4:\"time\";i:1775571318;}s:30:\"custom-pro-widget-nav-menu.min\";a:1:{s:4:\"time\";i:1775571318;}s:30:\"custom-pro-widget-flip-box.min\";a:1:{s:4:\"time\";i:1775571318;}s:36:\"custom-pro-widget-call-to-action.min\";a:1:{s:4:\"time\";i:1775571318;}s:42:\"custom-pro-widget-testimonial-carousel.min\";a:1:{s:4:\"time\";i:1775571318;}s:36:\"custom-pro-widget-video-playlist.min\";a:1:{s:4:\"time\";i:1775571318;}s:31:\"custom-pro-widget-mega-menu.min\";a:1:{s:4:\"time\";i:1775571318;}}', 'auto'),
(1352, 'analyst_cache', 's:6:\"a:0:{}\";', 'auto'),
(1367, '_transient_bmi_latest_size_wordpress', '61533890', 'on'),
(657, '_site_transient_update_core', 'O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.9.4.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.9.4.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.9.4-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.9.4-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.9.4\";s:7:\"version\";s:5:\"6.9.4\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1775571263;s:15:\"version_checked\";s:5:\"6.9.4\";s:12:\"translations\";a:0:{}}', 'off'),
(615, 'elementor_library_category_children', 'a:0:{}', 'auto');
INSERT INTO `wpd_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(619, 'elementor_controls_usage', 'a:4:{s:7:\"wp-page\";a:9:{s:7:\"heading\";a:2:{s:5:\"count\";i:13;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:13;s:11:\"header_size\";i:8;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:21:\"typography_typography\";i:5;s:25:\"typography_text_transform\";i:3;s:5:\"align\";i:6;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:13;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:12;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:6:{s:14:\"flex_direction\";i:9;s:13:\"content_width\";i:7;s:5:\"width\";i:6;s:8:\"flex_gap\";i:3;s:20:\"flex_justify_content\";i:3;s:16:\"flex_align_items\";i:1;}}s:5:\"style\";a:3:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:12;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:7;s:16:\"background_color\";i:3;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:5:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:12;}s:14:\"section_layout\";a:3:{s:7:\"padding\";i:9;s:16:\"_flex_align_self\";i:3;s:11:\"css_classes\";i:2;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:7;s:18:\"animation_duration\";i:7;}s:19:\"_section_responsive\";a:0:{}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:2;}}}}s:4:\"form\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:19:\"section_form_fields\";a:3:{s:9:\"form_name\";i:2;s:11:\"form_fields\";i:2;s:10:\"input_size\";i:2;}s:15:\"section_buttons\";a:2:{s:11:\"button_text\";i:2;s:12:\"button_width\";i:1;}s:13:\"section_email\";a:5:{s:8:\"email_to\";i:2;s:13:\"email_subject\";i:2;s:10:\"email_from\";i:2;s:13:\"form_metadata\";i:2;s:14:\"email_reply_to\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:5:{s:27:\"label_typography_typography\";i:2;s:28:\"label_typography_font_weight\";i:2;s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:13:\"label_spacing\";i:1;}s:19:\"section_field_style\";a:3:{s:22:\"field_background_color\";i:2;s:18:\"field_border_color\";i:2;s:18:\"field_border_width\";i:2;}s:20:\"section_button_style\";a:2:{s:26:\"previous_button_text_color\";i:1;s:18:\"button_hover_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:2;s:10:\"link_click\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:2;}s:18:\"section_icon_style\";a:1:{s:16:\"icon_color_hover\";i:2;}s:18:\"section_text_style\";a:1:{s:16:\"text_color_hover\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:19:\"image_border_radius\";i:1;s:5:\"width\";i:1;s:5:\"space\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:17:\"animated-headline\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:4:{s:14:\"headline_style\";i:1;s:11:\"before_text\";i:1;s:16:\"highlighted_text\";i:1;s:13:\"rotating_text\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_text\";a:4:{s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:33:\"highlighted_text_background_color\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:1:{s:16:\"social_icon_list\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:9:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:13:\"border_radius\";i:1;}s:20:\"section_social_hover\";a:1:{s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:20:\"pp-info-box-carousel\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:18:\"section_info_boxes\";a:6:{s:13:\"pp_info_boxes\";i:3;s:6:\"layout\";i:3;s:7:\"columns\";i:2;s:20:\"columns_mobile_extra\";i:1;s:14:\"title_html_tag\";i:2;s:18:\"equal_height_boxes\";i:2;}}s:5:\"style\";a:4:{s:20:\"section_layout_style\";a:2:{s:11:\"columns_gap\";i:3;s:8:\"rows_gap\";i:3;}s:27:\"section_info_box_icon_style\";a:3:{s:18:\"icon_border_radius\";i:1;s:14:\"icon_img_width\";i:1;s:9:\"icon_size\";i:2;}s:22:\"section_info_box_style\";a:3:{s:30:\"info_box_background_background\";i:2;s:25:\"info_box_background_color\";i:2;s:16:\"info_box_padding\";i:2;}s:28:\"section_info_box_title_style\";a:1:{s:12:\"title_margin\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}}s:5:\"popup\";a:2:{s:11:\"text-editor\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}s:6:\"footer\";a:5:{s:7:\"heading\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:4;s:11:\"header_size\";i:4;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:3;s:10:\"link_click\";i:3;}}s:5:\"style\";a:1:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:3;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:2:{s:16:\"social_icon_list\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:9:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:13:\"border_radius\";i:1;}s:20:\"section_social_hover\";a:1:{s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:5;s:13:\"content_width\";i:3;s:5:\"width\";i:3;s:9:\"flex_wrap\";i:1;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:5;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:2;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:19:\"_section_responsive\";a:6:{s:15:\"hide_widescreen\";i:1;s:12:\"hide_desktop\";i:1;s:17:\"hide_tablet_extra\";i:1;s:11:\"hide_tablet\";i:1;s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_button\";a:1:{s:4:\"link\";i:1;}}}}}s:6:\"header\";a:4:{s:9:\"icon-list\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:1:{s:10:\"icon_align\";i:1;}s:18:\"section_text_style\";a:3:{s:26:\"icon_typography_typography\";i:1;s:30:\"icon_typography_text_transform\";i:1;s:31:\"icon_typography_text_decoration\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:4;s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:1;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:4;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:2;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"align\";i:1;s:5:\"width\";i:1;s:5:\"space\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:16:\"pp-advanced-menu\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:3:{s:11:\"align_items\";i:1;s:9:\"menu_type\";i:1;s:12:\"toggle_align\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_style_main_menu\";a:4:{s:28:\"padding_horizontal_menu_item\";i:1;s:26:\"padding_vertical_menu_item\";i:1;s:18:\"menu_space_between\";i:1;s:13:\"pointer_width\";i:1;}s:12:\"style_toggle\";a:1:{s:23:\"toggle_background_color\";i:1;}s:16:\"style_typography\";a:4:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:30:\"dropdown_typography_typography\";i:1;s:31:\"dropdown_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}}', 'off');
INSERT INTO `wpd_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(614, 'elementor_remote_info_library', 'a:3:{s:10:\"types_data\";a:4:{s:5:\"block\";a:2:{s:10:\"categories\";a:30:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:10:\"ehp-footer\";i:9;s:10:\"ehp-header\";i:10;s:3:\"faq\";i:11;s:8:\"features\";i:12;s:6:\"footer\";i:13;s:7:\"Gallery\";i:14;s:6:\"header\";i:15;s:4:\"hero\";i:16;s:11:\"Link in Bio\";i:17;s:9:\"portfolio\";i:18;s:7:\"pricing\";i:19;s:15:\"product archive\";i:20;s:5:\"Quote\";i:21;s:15:\"Service Details\";i:22;s:8:\"services\";i:23;s:11:\"single page\";i:24;s:11:\"single post\";i:25;s:14:\"single product\";i:26;s:5:\"stats\";i:27;s:9:\"subscribe\";i:28;s:4:\"team\";i:29;s:12:\"testimonials\";}s:4:\"sets\";a:5:{i:0;s:11:\"Boxing Club\";i:1;s:19:\"Business Consultant\";i:2;s:16:\"Marketing Agency\";i:3;s:9:\"Wireframe\";i:4;s:15:\"Workshop Center\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:15:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";i:14;s:9:\"Wireframe\";}}s:2:\"lb\";a:1:{s:10:\"categories\";a:2:{i:0;s:4:\"post\";i:1;s:7:\"product\";}}}s:10:\"categories\";a:30:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:10:\"ehp-footer\";i:9;s:10:\"ehp-header\";i:10;s:3:\"faq\";i:11;s:8:\"features\";i:12;s:6:\"footer\";i:13;s:7:\"Gallery\";i:14;s:6:\"header\";i:15;s:4:\"hero\";i:16;s:11:\"Link in Bio\";i:17;s:9:\"portfolio\";i:18;s:7:\"pricing\";i:19;s:15:\"product archive\";i:20;s:5:\"Quote\";i:21;s:15:\"Service Details\";i:22;s:8:\"services\";i:23;s:11:\"single page\";i:24;s:11:\"single post\";i:25;s:14:\"single product\";i:26;s:5:\"stats\";i:27;s:9:\"subscribe\";i:28;s:4:\"team\";i:29;s:12:\"testimonials\";}s:9:\"templates\";a:823:{i:0;a:21:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:21:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:21:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:21:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:21:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:21:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:21:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:21:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:21:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:21:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:21:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:21:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:21:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:21:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:21:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:21:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:21:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:21:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:21:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:21:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:21:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:21:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:21:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:21:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:21:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:21:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:21:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic |  Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:21:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:150:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:21:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:21:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:21:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:21:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:21:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:21:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:21:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:21:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:21:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:21:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:21:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:21:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:21:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:21:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar  | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:21:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In  | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:21:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:21:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:21:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:21:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:21:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:21:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:21:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:21:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:21:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:21:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:21:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:21:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:21:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:21:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:21:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:21:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:21:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:21:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:155:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:21:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:21:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:21:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:21:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:21:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:21:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:21:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:21:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:21:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:21:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:21:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:21:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:21:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:21:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:21:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:21:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:21:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:21:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:21:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:21:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:21:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In  | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:21:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:21:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:21:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:21:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:21:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:21:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:21:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:21:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:21:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:21:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:21:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:21:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:21:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:21:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:21:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:21:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:21:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:21:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:21:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:21:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:21:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:21:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:21:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:21:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:21:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:21:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:21:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:21:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:21:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:21:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:21:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:21:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:21:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:21:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/dot-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:21:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:21:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:21:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe &#8211; Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-courses-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:119;a:21:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:21:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:21:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe &#8211; Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:21:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:21:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe &#8211; Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:21:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe &#8211; Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:21:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe &#8211; Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:21:{s:4:\"tmpl\";i:1451;s:2:\"id\";i:23604;s:5:\"title\";s:38:\"Classic | Subscribe | Nail Polish Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/38-Subscribe-Nail-Polish-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1660205114;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-subscribe-nail-polish-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:21:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small.jpg\";s:12:\"tmpl_created\";i:1660205149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Contact\",\"Ebook\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:21:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"Online Shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:21:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:50:\"Fly-In | Team Details  | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:21:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:46:\"Full Screen | Menu | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:154:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:21:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:21:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:44:\"Hello Bar | CTA | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:21:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:39:\"Classic | Discount | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:21:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:45:\"Bottom Bar | Discount | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:21:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:32:\"Hello Bar | Menu | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:21:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:37:\"Full Screen | Booking | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:21:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:34:\"Classic | Discount | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:21:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:34:\"Slide-In | Contact | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:21:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:21:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:21:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:40:\"Bottom Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:21:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:32:\"Fly-In | Contact | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:21:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:31:\"Classic |  Login | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:21:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:36:\"Full Screen | Login | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:21:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:28:\"Classic | Login | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:21:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:31:\"Classic | Login | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:21:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:40:\"Classic |  Login | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:21:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:36:\"Fly-In | Contact | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:21:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:36:\"Fly-In | CTA | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:21:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:37:\"Full Screen | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:21:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:44:\"Classic | Contact | Support Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:21:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:21:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:21:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:21:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:21:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:21:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:21:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:21:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:21:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:21:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:21:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:21:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/nails-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:21:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/music-festival-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:21:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:21:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:21:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:21:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:21:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe &#8211; Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:21:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"Luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:21:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe &#8211; About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:21:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:21:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:21:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:21:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:176;a:21:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:21:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:21:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:21:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:21:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:21:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/law-firm-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:21:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:21:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:21:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photographer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"Project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:21:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:21:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:21:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:21:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photographer-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Gallery\",\"Photography\",\"Portfolio\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:21:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe &#8211; Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:21:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:21:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe &#8211; Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:21:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"Interior Design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:21:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:21:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:21:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:21:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/online-training-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:21:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:21:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe &#8211; About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:21:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:21:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:21:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:21:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"Online Shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:21:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:21:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:21:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:21:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:21:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:21:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/insurance-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:21:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:21:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/time-management-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:21:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/contact-plants-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:21:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:21:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:21:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dental-care-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:21:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:21:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:21:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe &#8211; Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:21:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/conference-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:21:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:220;a:21:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"Interior Design\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:21:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:21:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:21:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:21:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:21:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/conference-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Conference\",\"Contact\",\"Form\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:21:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:21:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:21:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/travel-agency-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:21:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/car-wash-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:21:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:21:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:21:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:21:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:21:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/3d-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:21:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:21:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:21:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/architecture-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"Creative Portfolio\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:21:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:21:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:21:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:21:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:21:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe &#8211; About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:21:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:21:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:21:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:21:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:21:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe &#8211; About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:21:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:21:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:21:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:21:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:21:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:21:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:21:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:21:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:21:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/interior-design-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:21:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:21:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:21:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:21:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"Medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:21:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/hotel-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"Contact\",\"from\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:21:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:21:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:21:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:21:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/online-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:21:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:21:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:21:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:21:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:21:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:21:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:21:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:21:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:21:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:21:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:21:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:21:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/restaurant-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:60:\"[\"Contact\",\"Food\",\"Form\",\"Google Maps\",\"Info\",\"Testimonial\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:21:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:21:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/interior-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:21:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:21:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:21:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:21:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:21:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/exhibition-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"Creative Portfolio\",\"Exhibition\",\"Gallery\",\"Portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:21:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:21:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:21:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:21:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:21:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:21:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:21:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:21:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:21:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:21:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:21:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:21:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:21:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:21:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:21:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:21:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:301;a:21:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:21:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:21:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:21:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:21:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:21:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:21:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:21:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:21:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/moving-company-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"Moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:21:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:21:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:21:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:21:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:21:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:21:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:21:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/business-consulting-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:21:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:21:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:21:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:320;a:21:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"Stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:21:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:21:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:21:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"Medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:21:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:325;a:21:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:21:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:21:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:21:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:329;a:21:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:21:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/open-week-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:21:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:21:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:333;a:21:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:21:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:21:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:21:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:21:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/birthday-party-invitation/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:21:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/beauty-salon-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:21:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:21:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:21:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:21:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:21:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:21:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:21:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:21:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/beauty-salon-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:21:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:21:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/beauty-salon-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:21:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:21:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:21:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/travel-blog-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:21:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:21:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-blog-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:21:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:21:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-4-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:21:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-blog-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:21:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:21:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/dance-studio-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:21:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-5-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:360;a:21:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"Beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:21:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/dance-studio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:21:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-6-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:21:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:21:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:21:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:21:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/dance-studio-schedule/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:21:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:21:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:21:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:21:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:21:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:21:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:21:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:21:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/psychologist-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:21:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:21:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:21:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:21:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/psychologist-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:21:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:21:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:21:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/psychologist-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:21:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/flooring-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:21:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:21:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:21:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:21:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:21:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:21:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/flooring-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:21:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/flooring-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:21:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:21:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:21:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:21:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:21:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:21:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:21:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:21:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:21:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:21:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:21:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:21:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:21:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:21:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:21:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:21:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:21:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:21:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:21:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:21:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:21:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:21:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:21:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/barbershop-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:21:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:21:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/barbershop-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:21:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:21:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/barbershop-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:21:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:21:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:21:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/online-course-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:21:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:21:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:21:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/online-course-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:21:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/online-course-course-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:21:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/online-course-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:21:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:21:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/interior-design-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:21:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1660205402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:21:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/interior-design-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:21:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:21:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/interior-design-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:21:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:21:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/interior-design-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:21:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:21:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/photography-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:21:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:21:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:21:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-wildlife/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:21:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:21:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:21:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:21:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/photography-nature/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:21:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:21:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:21:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:21:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:21:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-pets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:21:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:21:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:21:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:21:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:21:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/magazine-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:21:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:21:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:21:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:21:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:21:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:21:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-testimonials/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:21:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/travel-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:21:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:21:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:21:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-contact-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:21:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/portfolio-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:21:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:21:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/portfolio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:21:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:21:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/portfolio-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:21:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:21:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/digital-agency-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:21:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:21:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:21:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/law-firm-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:21:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:21:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/law-firm-team/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:21:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:21:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:21:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:21:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-careers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:21:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:21:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/law-firm-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:21:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:21:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-partner/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:21:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:21:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/digital-agency-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:21:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:21:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:21:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:21:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:21:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/law-firm-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:21:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/digital-agency-social-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:21:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:21:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:21:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/gym-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:21:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:21:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:21:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/digital-agency-clients/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:21:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:21:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/gym-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:21:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:21:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:21:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:21:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/contact-digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:21:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:21:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:21:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:21:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:21:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:21:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:21:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:21:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:21:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:21:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:21:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:21:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:21:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:21:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:21:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:21:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:21:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:21:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:21:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:21:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:21:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:21:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:21:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:21:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:21:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:21:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:21:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:21:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:21:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:21:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:21:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:21:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-32/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:21:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-33/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:21:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-34/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:21:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:21:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:21:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:21:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:21:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:21:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:21:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:21:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:21:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:21:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:21:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:21:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:21:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:21:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:21:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:21:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:21:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:21:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:554;a:21:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:21:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:556;a:21:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:21:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:21:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:559;a:21:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:21:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:21:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:21:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:21:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:21:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:21:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:566;a:21:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:567;a:21:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:21:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:569;a:21:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:21:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:571;a:21:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:21:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:21:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:21:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:21:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:21:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:21:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:21:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-010/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:21:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-011/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:21:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-012/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:21:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-013/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:21:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-014/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:21:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/demo/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:21:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:21:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:21:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:21:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:21:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:21:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:21:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:21:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:21:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer_7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:21:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:21:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:21:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:21:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:21:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:21:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:21:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:21:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:21:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:21:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:21:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:21:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:21:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:21:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:21:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:21:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:21:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:21:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:21:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:21:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:21:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:21:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:21:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:21:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:21:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:21:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:21:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:21:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:21:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:21:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:21:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:400;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:21:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:403;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:21:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:405;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:21:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"Interior Design\"]\";s:10:\"menu_order\";i:406;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:21:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"Interior Design\"]\";s:10:\"menu_order\";i:408;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:21:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:410;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:21:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:413;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:21:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:414;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:21:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:416;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:21:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:419;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:21:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:421;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:21:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:422;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:21:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:424;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:21:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:425;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:21:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:427;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:21:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:430;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:21:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:432;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:21:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:433;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:21:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:434;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:21:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:436;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:21:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:438;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:21:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:441;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:21:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:442;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:21:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/magazine-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:445;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:21:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:447;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:21:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:448;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:21:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:450;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:21:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-search/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:452;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:21:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:453;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:21:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:454;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:21:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:457;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:21:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:459;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:21:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:461;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:21:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:462;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:21:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:464;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:21:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:466;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:21:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:469;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:21:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:471;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:21:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:473;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:21:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:475;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:21:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:477;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:21:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:478;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:21:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:480;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:21:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:483;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:21:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Footer\",\"Portfolio\"]\";s:10:\"menu_order\";i:484;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:21:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:487;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:21:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:489;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:21:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Header\",\"Portfolio\"]\";s:10:\"menu_order\";i:491;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:21:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:493;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:21:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:495;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:21:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:496;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:21:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:498;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:21:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:500;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:21:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:503;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:21:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:504;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:21:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:507;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:21:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:509;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:21:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:511;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:21:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:513;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:21:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:515;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:21:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:517;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:21:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:519;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:21:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:521;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:21:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:523;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:21:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:524;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:21:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:527;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:21:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:529;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:21:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:530;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:21:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:532;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:21:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:534;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:21:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:537;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:21:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:539;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:21:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:540;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:21:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:543;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:21:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:545;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:21:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:547;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:21:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:549;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:21:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:551;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:21:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:553;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:21:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:554;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:21:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:557;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:21:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:559;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:21:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:564;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:21:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:565;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:21:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:21:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:21:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:21:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:21:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:21:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:21:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:569;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:21:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:570;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:21:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:571;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:21:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:572;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:21:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:573;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:21:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:574;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:21:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:575;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:21:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:576;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:21:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:577;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:21:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:578;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:21:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:579;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:21:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:580;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:21:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:581;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:21:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:582;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:21:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:583;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:21:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:584;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:21:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:585;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:21:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:586;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:21:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:587;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:21:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:588;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:21:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:589;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:21:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:590;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:21:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:591;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:21:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:592;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:21:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:593;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:21:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:594;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:21:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:595;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:21:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:596;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:21:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:597;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:21:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:598;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:21:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:599;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:21:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:600;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:21:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:601;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:21:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:602;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:21:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:603;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:21:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:604;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:21:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:605;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:21:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:610;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:751;a:21:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:611;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:752;a:21:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:753;a:21:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:21:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:21:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:21:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:21:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:21:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:21:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:760;a:21:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:616;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:21:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:617;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:21:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:618;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:21:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:619;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:21:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:620;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:21:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:621;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:21:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:622;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:21:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:623;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:21:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:624;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:21:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:625;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:21:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:626;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:21:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:627;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:21:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:628;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:21:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/team-12-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:629;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:21:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:630;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:21:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:631;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:21:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:632;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:21:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:633;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:21:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:634;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:21:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:635;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:21:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:636;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:21:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:637;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:21:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:638;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:21:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:639;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:21:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:640;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:21:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:641;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:21:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:642;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:21:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:643;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:21:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:644;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:21:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:645;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:21:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:646;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:21:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:647;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:21:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:648;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:21:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:649;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:21:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:650;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:21:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:651;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:21:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:652;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:21:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:653;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:21:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:654;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:21:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:655;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:21:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:656;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:21:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:657;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:21:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:658;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:21:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:659;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:21:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:660;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:21:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:661;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:21:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:662;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:21:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:663;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:21:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:664;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:21:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:665;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:21:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:666;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:21:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:667;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:21:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:668;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:21:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:669;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:21:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:670;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:21:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:671;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:21:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:672;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:21:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:673;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:21:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:674;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:21:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:675;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:21:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:676;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:21:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:677;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:21:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:678;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}', 'off');
INSERT INTO `wpd_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(747, '_transient_timeout_elementor_pro_rollback_versions_4.0.1', '1775986723', 'off'),
(748, '_transient_elementor_pro_rollback_versions_4.0.1', 'a:30:{i:0;s:5:\"4.0.0\";i:1;s:6:\"3.35.1\";i:2;s:6:\"3.35.0\";i:3;s:6:\"3.34.4\";i:4;s:6:\"3.34.3\";i:5;s:6:\"3.34.2\";i:6;s:6:\"3.34.1\";i:7;s:6:\"3.34.0\";i:8;s:6:\"3.33.2\";i:9;s:6:\"3.33.1\";i:10;s:6:\"3.33.0\";i:11;s:6:\"3.32.3\";i:12;s:6:\"3.32.2\";i:13;s:6:\"3.32.1\";i:14;s:6:\"3.32.0\";i:15;s:6:\"3.31.3\";i:16;s:6:\"3.31.2\";i:17;s:6:\"3.31.0\";i:18;s:6:\"3.30.1\";i:19;s:6:\"3.30.0\";i:20;s:6:\"3.29.2\";i:21;s:6:\"3.29.1\";i:22;s:6:\"3.29.0\";i:23;s:6:\"3.28.4\";i:24;s:6:\"3.28.3\";i:25;s:6:\"3.28.2\";i:26;s:6:\"3.28.1\";i:27;s:6:\"3.28.0\";i:28;s:6:\"3.27.7\";i:29;s:6:\"3.27.6\";}', 'off'),
(1315, '_site_transient_timeout_theme_roots', '1775572701', 'off'),
(1316, '_site_transient_theme_roots', 'a:3:{s:11:\"astra-child\";s:7:\"/themes\";s:5:\"astra\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";}', 'off'),
(1299, '_site_transient_timeout_wp_plugin_dependencies_plugin_timeout_elementor', '1775614029', 'off'),
(1300, '_site_transient_wp_plugin_dependencies_plugin_timeout_elementor', '1', 'off'),
(1348, '_site_transient_update_plugins', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1775571271;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:4:{s:31:\"backup-backup/backup-backup.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/backup-backup\";s:4:\"slug\";s:13:\"backup-backup\";s:6:\"plugin\";s:31:\"backup-backup/backup-backup.php\";s:11:\"new_version\";s:5:\"2.1.4\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/backup-backup/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/backup-backup.2.1.4.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/backup-backup/assets/icon-128x128.png?rev=2995566\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/backup-backup/assets/banner-772x250.png?rev=2429136\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"4.0.1\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.0.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.gif?rev=3444228\";s:2:\"1x\";s:62:\"https://ps.w.org/elementor/assets/icon-128x128.gif?rev=3444228\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3443226\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3443226\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.6\";}s:41:\"powerpack-elements/powerpack-elements.php\";O:8:\"stdClass\":17:{s:11:\"new_version\";s:7:\"2.12.18\";s:14:\"stable_version\";s:7:\"2.12.18\";s:4:\"name\";s:18:\"PowerPack Elements\";s:4:\"slug\";s:18:\"powerpack-elements\";s:3:\"url\";s:71:\"https://powerpackelements.com/downloads/powerpack-elements/?changelog=1\";s:12:\"last_updated\";s:19:\"2026-04-01 06:51:01\";s:8:\"homepage\";s:29:\"https://powerpackelements.com\";s:7:\"package\";s:202:\"https://powerpackelements.com/edd-sl/package_download/MTc3NTc1MzUzNzo4MjAzNTdiMjdiZWRiOWJmMzFjZjQ3Yzk4ZjVhMDRiMToxMDU1OjFmOWQ0Mjg2ZTM4NDAxYjhhNmU0ODdlYWRjZGM2Mzk3Omh0dHBzQC8vbXJhcmlmLm1lL2Ryc2FyYWg6MA==\";s:13:\"download_link\";s:202:\"https://powerpackelements.com/edd-sl/package_download/MTc3NTc1MzUzNzo4MjAzNTdiMjdiZWRiOWJmMzFjZjQ3Yzk4ZjVhMDRiMToxMDU1OjFmOWQ0Mjg2ZTM4NDAxYjhhNmU0ODdlYWRjZGM2Mzk3Omh0dHBzQC8vbXJhcmlmLm1lL2Ryc2FyYWg6MA==\";s:8:\"sections\";O:8:\"stdClass\":1:{s:9:\"changelog\";s:131:\"<p>Visit <a href=\"https://powerpackelements.com/change-logs/\" target=\"_blank\" rel=\"noopener\">changelogs page</a> for details.</p>\n\";}s:7:\"banners\";O:8:\"stdClass\":2:{s:4:\"high\";s:0:\"\";s:3:\"low\";s:0:\"\";}s:5:\"icons\";a:3:{s:2:\"1x\";s:94:\"https://mrarif.me/drsarah/wp-content/plugins/powerpack-elements/assets/images/icon-128x128.png\";s:2:\"2x\";s:94:\"https://mrarif.me/drsarah/wp-content/plugins/powerpack-elements/assets/images/icon-256x256.png\";s:7:\"default\";s:94:\"https://mrarif.me/drsarah/wp-content/plugins/powerpack-elements/assets/images/icon-256x256.png\";}s:12:\"contributors\";O:8:\"stdClass\":5:{s:16:\"ideaboxcreations\";O:8:\"stdClass\":3:{s:12:\"display_name\";s:16:\"ideaboxcreations\";s:7:\"profile\";s:41:\"//profiles.wordpress.org/ideaboxcreations\";s:6:\"avatar\";s:61:\"https://wordpress.org/grav-redirect.php?user=ideaboxcreations\";}s:10:\"bloompixel\";O:8:\"stdClass\":3:{s:12:\"display_name\";s:10:\"bloompixel\";s:7:\"profile\";s:35:\"//profiles.wordpress.org/bloompixel\";s:6:\"avatar\";s:55:\"https://wordpress.org/grav-redirect.php?user=bloompixel\";}s:10:\"simrandeep\";O:8:\"stdClass\":3:{s:12:\"display_name\";s:10:\"simrandeep\";s:7:\"profile\";s:35:\"//profiles.wordpress.org/simrandeep\";s:6:\"avatar\";s:55:\"https://wordpress.org/grav-redirect.php?user=simrandeep\";}s:7:\"ibachal\";O:8:\"stdClass\":3:{s:12:\"display_name\";s:7:\"ibachal\";s:7:\"profile\";s:32:\"//profiles.wordpress.org/ibachal\";s:6:\"avatar\";s:52:\"https://wordpress.org/grav-redirect.php?user=ibachal\";}s:13:\"puneetsahalot\";O:8:\"stdClass\":3:{s:12:\"display_name\";s:13:\"puneetsahalot\";s:7:\"profile\";s:38:\"//profiles.wordpress.org/puneetsahalot\";s:6:\"avatar\";s:58:\"https://wordpress.org/grav-redirect.php?user=puneetsahalot\";}}s:6:\"tested\";s:5:\"6.7.1\";s:9:\"changelog\";a:1:{i:0;s:131:\"<p>Visit <a href=\"https://powerpackelements.com/change-logs/\" target=\"_blank\" rel=\"noopener\">changelogs page</a> for details.</p>\n\";}s:6:\"plugin\";s:41:\"powerpack-elements/powerpack-elements.php\";s:2:\"id\";s:41:\"powerpack-elements/powerpack-elements.php\";}s:31:\"elementor-pro/elementor-pro.php\";O:8:\"stdClass\":17:{s:14:\"stable_version\";s:5:\"4.0.1\";s:12:\"last_updated\";s:19:\"2026-04-01 13:42:17\";s:11:\"new_version\";s:5:\"4.0.1\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.9.4\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:376:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvZHJzYXJhaCIsImRvd25sb2FkX2JldGEiOmZhbHNlLCJmaWxlX2tleSI6IjEiLCJpYXQiOjE3NzU1NzA4MjgsImV4cCI6MTc3NTY1NzIyOH0.VWSlRUxIsPzQmP6FzCF7Mv56EIHjbrp4uYAbUWdmJYw/package_download\";s:13:\"download_link\";s:376:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvZHJzYXJhaCIsImRvd25sb2FkX2JldGEiOmZhbHNlLCJmaWxlX2tleSI6IjEiLCJpYXQiOjE3NzU1NzA4MjgsImV4cCI6MTc3NTY1NzIyOH0.VWSlRUxIsPzQmP6FzCF7Mv56EIHjbrp4uYAbUWdmJYw/package_download\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:61:\"https://assets.elementor.com/miscellaneous/v1/images/icon.svg\";}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:12:{s:11:\"new_version\";s:5:\"3.7.0\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.9.4\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:353:\"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvZHJzYXJhaCIsImlhdCI6MTc3NTU3MDgyOCwiZXhwIjoxNzc1NjU3MjI4fQ.NTc4QHYeg6arNLH66tjR-ukKBwu_LZO9k8TtLa1xjSs/previous_download\";s:13:\"download_link\";s:353:\"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvZHJzYXJhaCIsImlhdCI6MTc3NTU3MDgyOCwiZXhwIjoxNzc1NjU3MjI4fQ.NTc4QHYeg6arNLH66tjR-ukKBwu_LZO9k8TtLa1xjSs/previous_download\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:61:\"https://assets.elementor.com/miscellaneous/v1/images/icon.svg\";}}s:10:\"conditions\";a:1:{i:0;a:1:{i:0;a:3:{s:4:\"type\";s:8:\"language\";s:9:\"languages\";a:27:{i:0;s:5:\"he_IL\";i:1;s:5:\"nl_NL\";i:2;s:5:\"en_GB\";i:3;s:5:\"en_NZ\";i:4;s:5:\"en_ZA\";i:5;s:5:\"en_AU\";i:6;s:5:\"en_CA\";i:7;s:5:\"sv_SE\";i:8;s:5:\"da_DK\";i:9;s:5:\"fr_FR\";i:10;s:5:\"nl_NL\";i:11;s:5:\"nb_NO\";i:12;s:5:\"de_AT\";i:13;s:2:\"fi\";i:14;s:5:\"it_IT\";i:15;s:5:\"nn_NO\";i:16;s:5:\"de_CH\";i:17;s:5:\"en_GB\";i:18;s:5:\"is_IS\";i:19;s:2:\"ga\";i:20;s:5:\"fr_BE\";i:21;s:5:\"nl_BE\";i:22;s:3:\"ast\";i:23;s:5:\"lb_LU\";i:24;s:5:\"es_ES\";i:25;s:5:\"pt_PT\";i:26;s:3:\"mlt\";}s:8:\"operator\";s:2:\"in\";}}}}s:5:\"cloud\";b:0;s:6:\"plugin\";s:31:\"elementor-pro/elementor-pro.php\";}}s:7:\"checked\";a:4:{s:31:\"backup-backup/backup-backup.php\";s:5:\"2.1.4\";s:23:\"elementor/elementor.php\";s:5:\"4.0.1\";s:31:\"elementor-pro/elementor-pro.php\";s:5:\"4.0.1\";s:41:\"powerpack-elements/powerpack-elements.php\";s:7:\"2.12.18\";}}', 'off');

-- --------------------------------------------------------

--
-- Table structure for table `wpd_postmeta`
--

CREATE TABLE `wpd_postmeta` (
  `meta_id` bigint(20) UNSIGNED NOT NULL,
  `post_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpd_postmeta`
--

INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'default'),
(2, 3, '_wp_page_template', 'default'),
(3, 6, '_elementor_edit_mode', 'builder'),
(4, 6, '_elementor_template_type', 'kit'),
(11, 6, '_elementor_migrations_state_8b2d', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(12, 10, '_edit_last', '1'),
(13, 10, '_edit_lock', '1775561438:1'),
(14, 10, '_wp_page_template', 'elementor_header_footer'),
(21, 10, 'ast-featured-img', 'disabled'),
(17, 10, 'site-sidebar-layout', 'no-sidebar'),
(18, 10, 'ast-site-content-layout', 'full-width-container'),
(19, 10, 'site-content-style', 'default'),
(20, 10, 'site-sidebar-style', 'default'),
(22, 10, 'astra-migrate-meta-layouts', 'set'),
(23, 10, 'ast-breadcrumbs-content', 'disabled'),
(24, 10, 'theme-transparent-header-meta', 'default'),
(25, 12, '_edit_last', '1'),
(26, 12, '_edit_lock', '1775547342:1'),
(27, 12, '_wp_page_template', 'elementor_header_footer'),
(34, 12, 'ast-featured-img', 'disabled'),
(30, 12, 'site-sidebar-layout', 'no-sidebar'),
(31, 12, 'ast-site-content-layout', 'full-width-container'),
(32, 12, 'site-content-style', 'default'),
(33, 12, 'site-sidebar-style', 'default'),
(3744, 12, 'astra-migrate-meta-layouts', 'set'),
(36, 12, 'ast-breadcrumbs-content', 'disabled'),
(37, 12, 'theme-transparent-header-meta', 'default'),
(38, 14, '_edit_last', '1'),
(39, 14, '_wp_page_template', 'elementor_header_footer'),
(46, 14, 'ast-featured-img', 'disabled'),
(42, 14, 'site-sidebar-layout', 'no-sidebar'),
(43, 14, 'ast-site-content-layout', 'full-width-container'),
(44, 14, 'site-content-style', 'default'),
(45, 14, 'site-sidebar-style', 'default'),
(3714, 14, 'astra-migrate-meta-layouts', 'set'),
(48, 14, 'ast-breadcrumbs-content', 'disabled'),
(49, 14, 'theme-transparent-header-meta', 'default'),
(50, 14, '_edit_lock', '1775546135:1'),
(51, 16, '_menu_item_type', 'post_type'),
(52, 16, '_menu_item_menu_item_parent', '0'),
(53, 16, '_menu_item_object_id', '14'),
(54, 16, '_menu_item_object', 'page'),
(55, 16, '_menu_item_target', ''),
(56, 16, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(57, 16, '_menu_item_xfn', ''),
(58, 16, '_menu_item_url', ''),
(78, 10, '_elementor_edit_mode', 'builder'),
(60, 17, '_menu_item_type', 'post_type'),
(61, 17, '_menu_item_menu_item_parent', '0'),
(62, 17, '_menu_item_object_id', '12'),
(63, 17, '_menu_item_object', 'page'),
(64, 17, '_menu_item_target', ''),
(65, 17, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(66, 17, '_menu_item_xfn', ''),
(67, 17, '_menu_item_url', ''),
(79, 10, '_astra_content_layout_flag', 'disabled'),
(69, 18, '_menu_item_type', 'post_type'),
(70, 18, '_menu_item_menu_item_parent', '0'),
(71, 18, '_menu_item_object_id', '10'),
(72, 18, '_menu_item_object', 'page'),
(73, 18, '_menu_item_target', ''),
(74, 18, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(75, 18, '_menu_item_xfn', ''),
(76, 18, '_menu_item_url', ''),
(80, 10, 'ast-title-bar-display', 'disabled'),
(81, 10, '_elementor_template_type', 'wp-page'),
(82, 10, '_elementor_version', '4.0.1'),
(83, 10, '_elementor_pro_version', '4.0.1'),
(134, 10, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a55114e\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/implantation_14717707.svg\",\"id\":435},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(85, 10, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(86, 6, '_elementor_migrations_state_61cb', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(119, 21, '_elementor_edit_mode', 'builder'),
(120, 21, '_elementor_template_type', 'wp-page'),
(150, 24, '_edit_lock', '1775373637:1'),
(91, 6, '_edit_lock', '1775373329:1'),
(92, 19, '_elementor_edit_mode', 'builder'),
(93, 19, '_elementor_template_type', 'kit'),
(94, 19, '_elementor_migrations_state_8b2d', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(95, 19, '_elementor_migrations_state_61cb', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(97, 6, '_wp_page_template', 'default'),
(98, 6, '_elementor_page_settings', 'a:20:{s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:9:\"Dr. Sarah\";s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1240;s:5:\"sizes\";a:0:{}}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:21:\"default_page_template\";s:23:\"elementor_header_footer\";s:18:\"active_breakpoints\";a:5:{i:0;s:15:\"viewport_mobile\";i:1;s:21:\"viewport_mobile_extra\";i:2;s:15:\"viewport_tablet\";i:3;s:21:\"viewport_tablet_extra\";i:4;s:19:\"viewport_widescreen\";}s:15:\"viewport_mobile\";i:480;s:21:\"viewport_mobile_extra\";i:767;s:15:\"viewport_tablet\";i:991;s:21:\"viewport_tablet_extra\";i:1199;s:19:\"viewport_widescreen\";i:1200;s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:481;s:11:\"viewport_lg\";i:992;s:16:\"site_description\";s:7:\"Welcome\";}'),
(99, 6, '_elementor_data', '[]'),
(100, 20, '_elementor_edit_mode', 'builder'),
(101, 20, '_elementor_template_type', 'kit'),
(102, 20, '_elementor_migrations_state_8b2d', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(103, 20, '_elementor_migrations_state_61cb', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(223, 34, '_elementor_edit_mode', 'builder'),
(105, 20, '_wp_page_template', 'default'),
(106, 20, '_elementor_page_settings', 'a:11:{s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:9:\"Dr. Sarah\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),
(107, 20, '_elementor_data', '[]'),
(118, 21, '_wp_page_template', 'elementor_header_footer'),
(109, 6, '_elementor_version', '4.0.1'),
(110, 6, '_elementor_pro_version', '3.25.4'),
(151, 24, '_wp_trash_meta_status', 'publish'),
(121, 21, '_elementor_version', '4.0.1'),
(122, 21, '_elementor_pro_version', '3.25.4'),
(123, 21, '_elementor_page_settings', 'a:0:{}'),
(124, 21, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(126, 22, '_wp_page_template', 'elementor_header_footer'),
(127, 22, '_elementor_edit_mode', 'builder'),
(128, 22, '_elementor_template_type', 'wp-page'),
(129, 22, '_elementor_version', '4.0.1'),
(130, 22, '_elementor_pro_version', '3.25.4'),
(131, 22, '_elementor_page_settings', 'a:0:{}'),
(132, 22, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(135, 23, '_wp_page_template', 'elementor_header_footer'),
(136, 23, '_elementor_edit_mode', 'builder'),
(137, 23, '_elementor_template_type', 'wp-page'),
(138, 23, '_elementor_version', '4.0.1'),
(139, 23, '_elementor_pro_version', '3.25.4'),
(140, 23, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(142, 23, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}]},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}]},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(152, 24, '_wp_trash_meta_time', '1775373645'),
(153, 25, '_edit_lock', '1775373719:1'),
(154, 25, '_wp_trash_meta_status', 'publish'),
(155, 25, '_wp_trash_meta_time', '1775373734'),
(156, 26, '_edit_lock', '1775373763:1'),
(157, 26, '_wp_trash_meta_status', 'publish'),
(158, 26, '_wp_trash_meta_time', '1775373783'),
(159, 27, '_wp_page_template', 'elementor_header_footer'),
(160, 27, '_elementor_edit_mode', 'builder'),
(161, 27, '_elementor_template_type', 'wp-page'),
(162, 27, '_elementor_version', '4.0.1'),
(163, 27, '_elementor_pro_version', '3.25.4'),
(164, 27, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(165, 27, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}]},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}]},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(166, 27, '_elementor_page_settings', 'a:0:{}'),
(370, 49, '_elementor_edit_mode', 'builder'),
(371, 49, '_elementor_template_type', 'header'),
(372, 49, '_elementor_version', '4.0.1'),
(373, 49, '_elementor_pro_version', '3.25.4'),
(374, 49, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(375, 49, '_wp_page_template', 'default'),
(376, 49, '_elementor_data', '[{\"id\":\"d3ae750\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fc10808\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4f9b77b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f12d87c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"876574e\"}]},\"elements\":[{\"id\":\"3bc14cb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2061631\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88932f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"26ff0e8\"}],\"pp_display_conditions\":[{\"_id\":\"86b987c\"}]},\"elements\":[{\"id\":\"6382518\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/logo-15.png\",\"id\":47,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"1e840e0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"754dc3d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d4ffd9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"be2a022\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5bd3673\"}],\"pp_display_conditions\":[{\"_id\":\"0aa1f89\"}]},\"elements\":[{\"id\":\"d9830ef\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_label\":\"Menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4b8d247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true}],\"isInner\":false}]'),
(367, 45, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(170, 28, '_wp_page_template', 'elementor_header_footer'),
(171, 28, '_elementor_edit_mode', 'builder'),
(172, 28, '_elementor_template_type', 'wp-page'),
(173, 28, '_elementor_version', '4.0.1'),
(174, 28, '_elementor_pro_version', '3.25.4'),
(175, 28, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(176, 28, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}]},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}]},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(177, 28, '_elementor_page_settings', 'a:0:{}'),
(359, 48, '_elementor_version', '4.0.1'),
(360, 48, '_elementor_pro_version', '3.25.4'),
(361, 48, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(362, 48, '_wp_page_template', 'default'),
(363, 48, '_elementor_data', '[{\"id\":\"d3ae750\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fc10808\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4f9b77b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f12d87c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"876574e\"}]},\"elements\":[{\"id\":\"3bc14cb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2061631\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88932f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"26ff0e8\"}],\"pp_display_conditions\":[{\"_id\":\"86b987c\"}]},\"elements\":[{\"id\":\"6382518\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/logo-15.png\",\"id\":47,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"1e840e0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"754dc3d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d4ffd9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"be2a022\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5bd3673\"}],\"pp_display_conditions\":[{\"_id\":\"0aa1f89\"}]},\"elements\":[{\"id\":\"d9830ef\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_label\":\"Menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4b8d247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true}],\"isInner\":false}]'),
(222, 34, '_wp_page_template', 'elementor_header_footer'),
(181, 29, '_wp_page_template', 'elementor_header_footer'),
(182, 29, '_elementor_edit_mode', 'builder'),
(183, 29, '_elementor_template_type', 'wp-page'),
(184, 29, '_elementor_version', '4.0.1'),
(185, 29, '_elementor_pro_version', '3.25.4'),
(186, 29, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(187, 29, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}]},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}]},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"071468f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"pp_display_conditions\":[{\"_id\":\"2e77367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(473, 57, '_wp_page_template', 'elementor_header_footer'),
(355, 45, '_wp_page_template', 'default'),
(357, 48, '_elementor_edit_mode', 'builder'),
(358, 48, '_elementor_template_type', 'header'),
(233, 35, '_wp_page_template', 'elementor_header_footer'),
(234, 35, '_elementor_edit_mode', 'builder'),
(235, 35, '_elementor_template_type', 'wp-page'),
(236, 35, '_elementor_version', '4.0.1'),
(237, 35, '_elementor_pro_version', '3.25.4'),
(238, 35, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(239, 35, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}]},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(194, 30, '_edit_lock', '1775374154:1'),
(195, 30, '_wp_trash_meta_status', 'publish'),
(196, 30, '_wp_trash_meta_time', '1775374170'),
(197, 31, '_edit_lock', '1775374238:1'),
(198, 31, '_wp_trash_meta_status', 'publish'),
(199, 31, '_wp_trash_meta_time', '1775374257'),
(200, 32, '_wp_page_template', 'elementor_header_footer'),
(201, 32, '_elementor_edit_mode', 'builder'),
(202, 32, '_elementor_template_type', 'wp-page'),
(203, 32, '_elementor_version', '4.0.1'),
(204, 32, '_elementor_pro_version', '3.25.4'),
(205, 32, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(206, 32, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}]},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}]},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"071468f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"pp_display_conditions\":[{\"_id\":\"2e77367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(208, 32, '_elementor_page_settings', 'a:0:{}'),
(422, 52, '_elementor_page_settings', 'a:0:{}'),
(211, 33, '_wp_page_template', 'elementor_header_footer'),
(212, 33, '_elementor_edit_mode', 'builder'),
(213, 33, '_elementor_template_type', 'wp-page'),
(214, 33, '_elementor_version', '4.0.1'),
(215, 33, '_elementor_pro_version', '3.25.4'),
(216, 33, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(217, 33, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}]},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}]},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"071468f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"pp_display_conditions\":[{\"_id\":\"2e77367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(219, 33, '_elementor_page_settings', 'a:0:{}'),
(814, 86, '_elementor_edit_mode', 'builder'),
(815, 86, '_elementor_template_type', 'header'),
(816, 86, '_elementor_version', '4.0.1'),
(817, 86, '_elementor_pro_version', '3.25.4'),
(818, 86, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(819, 86, '_wp_page_template', 'default'),
(820, 86, '_elementor_data', '[{\"id\":\"d3ae750\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fc10808\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4f9b77b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f12d87c\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#08203E14\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"876574e\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"3bc14cb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2061631\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88932f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"26ff0e8\"}],\"pp_display_conditions\":[{\"_id\":\"86b987c\"}]},\"elements\":[{\"id\":\"6382518\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/logo-15.png\",\"id\":47,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"1e840e0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"754dc3d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d4ffd9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"be2a022\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5bd3673\"}],\"pp_display_conditions\":[{\"_id\":\"0aa1f89\"}]},\"elements\":[{\"id\":\"d9830ef\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_background_color\":\"#BF515100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4b8d247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true}],\"isInner\":false}]'),
(415, 52, '_wp_page_template', 'elementor_header_footer'),
(416, 52, '_elementor_edit_mode', 'builder'),
(417, 52, '_elementor_template_type', 'wp-page'),
(418, 52, '_elementor_version', '4.0.1'),
(419, 52, '_elementor_pro_version', '3.25.4'),
(420, 52, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(421, 52, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#D7D7A000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(224, 34, '_elementor_template_type', 'wp-page'),
(225, 34, '_elementor_version', '4.0.1'),
(226, 34, '_elementor_pro_version', '3.25.4'),
(227, 34, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(228, 34, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}]},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(241, 35, '_elementor_page_settings', 'a:0:{}'),
(242, 36, '_wp_page_template', 'elementor_header_footer'),
(243, 36, '_elementor_edit_mode', 'builder'),
(244, 36, '_elementor_template_type', 'wp-page'),
(245, 36, '_elementor_version', '4.0.1'),
(246, 36, '_elementor_pro_version', '3.25.4'),
(247, 36, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(248, 36, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}]},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(250, 36, '_elementor_page_settings', 'a:0:{}'),
(251, 37, '_wp_page_template', 'elementor_header_footer'),
(252, 37, '_elementor_edit_mode', 'builder'),
(253, 37, '_elementor_template_type', 'wp-page'),
(254, 37, '_elementor_version', '4.0.1'),
(255, 37, '_elementor_pro_version', '3.25.4'),
(256, 37, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(257, 37, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#D7D7A000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}]},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(457, 55, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#36360712\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(385, 50, '_elementor_edit_mode', 'builder'),
(386, 50, '_elementor_template_type', 'header'),
(387, 50, '_elementor_version', '4.0.1'),
(388, 50, '_elementor_pro_version', '3.25.4'),
(389, 50, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(390, 50, '_wp_page_template', 'default'),
(391, 50, '_elementor_data', '[{\"id\":\"d3ae750\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fc10808\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4f9b77b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f12d87c\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#08203E14\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"876574e\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"3bc14cb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2061631\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88932f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"26ff0e8\"}],\"pp_display_conditions\":[{\"_id\":\"86b987c\"}]},\"elements\":[{\"id\":\"6382518\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/logo-15.png\",\"id\":47,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"1e840e0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"754dc3d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d4ffd9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"be2a022\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5bd3673\"}],\"pp_display_conditions\":[{\"_id\":\"0aa1f89\"}]},\"elements\":[{\"id\":\"d9830ef\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_label\":\"Menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4b8d247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true}],\"isInner\":false}]'),
(262, 38, '_wp_attached_file', '2026/04/Dr.-Sarah-Alabdullah.jpg'),
(263, 38, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:800;s:6:\"height\";i:1100;s:4:\"file\";s:32:\"2026/04/Dr.-Sarah-Alabdullah.jpg\";s:8:\"filesize\";i:67479;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Dr.-Sarah-Alabdullah-218x300.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10359;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"Dr.-Sarah-Alabdullah-745x1024.jpg\";s:5:\"width\";i:745;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63659;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Dr.-Sarah-Alabdullah-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5609;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"Dr.-Sarah-Alabdullah-768x1056.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1056;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66510;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(264, 39, '_wp_page_template', 'elementor_header_footer'),
(265, 39, '_elementor_edit_mode', 'builder'),
(266, 39, '_elementor_template_type', 'wp-page'),
(267, 39, '_elementor_version', '4.0.1'),
(268, 39, '_elementor_pro_version', '3.25.4'),
(269, 39, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(270, 39, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#D7D7A000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}]},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(455, 55, '_elementor_pro_version', '3.25.4'),
(456, 55, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(272, 39, '_elementor_page_settings', 'a:0:{}'),
(408, 51, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(275, 40, '_wp_page_template', 'elementor_header_footer'),
(276, 40, '_elementor_edit_mode', 'builder'),
(277, 40, '_elementor_template_type', 'wp-page'),
(278, 40, '_elementor_version', '4.0.1'),
(279, 40, '_elementor_pro_version', '3.25.4'),
(280, 40, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(281, 40, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#D7D7A000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}]},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(453, 55, '_elementor_template_type', 'wp-page'),
(454, 55, '_elementor_version', '4.0.1'),
(283, 40, '_elementor_page_settings', 'a:0:{}'),
(487, 58, '_elementor_edit_mode', 'builder'),
(488, 58, '_elementor_template_type', 'header'),
(489, 58, '_elementor_version', '4.0.1'),
(490, 58, '_elementor_pro_version', '3.25.4'),
(491, 58, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(492, 58, '_wp_page_template', 'default'),
(493, 58, '_elementor_data', '[{\"id\":\"d3ae750\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fc10808\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4f9b77b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f12d87c\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#08203E14\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"876574e\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"3bc14cb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2061631\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88932f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"26ff0e8\"}],\"pp_display_conditions\":[{\"_id\":\"86b987c\"}]},\"elements\":[{\"id\":\"6382518\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/logo-15.png\",\"id\":47,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"1e840e0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"754dc3d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d4ffd9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"be2a022\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5bd3673\"}],\"pp_display_conditions\":[{\"_id\":\"0aa1f89\"}]},\"elements\":[{\"id\":\"d9830ef\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_background_color\":\"#BF515100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4b8d247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true}],\"isInner\":false}]'),
(286, 41, '_wp_page_template', 'elementor_header_footer'),
(287, 41, '_elementor_edit_mode', 'builder'),
(288, 41, '_elementor_template_type', 'wp-page'),
(289, 41, '_elementor_version', '4.0.1'),
(290, 41, '_elementor_pro_version', '3.25.4'),
(291, 41, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(292, 41, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#D7D7A000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(451, 55, '_wp_page_template', 'elementor_header_footer'),
(452, 55, '_elementor_edit_mode', 'builder'),
(437, 54, '_wp_page_template', 'elementor_header_footer'),
(299, 42, '_wp_page_template', 'elementor_header_footer'),
(300, 42, '_elementor_edit_mode', 'builder'),
(301, 42, '_elementor_template_type', 'wp-page'),
(302, 42, '_elementor_version', '4.0.1'),
(303, 42, '_elementor_pro_version', '3.25.4'),
(304, 42, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(305, 42, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#D7D7A000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(307, 42, '_elementor_page_settings', 'a:0:{}'),
(400, 51, '_elementor_edit_mode', 'builder'),
(401, 51, '_elementor_template_type', 'header'),
(402, 51, '_elementor_version', '4.0.1'),
(393, 50, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(310, 43, '_wp_page_template', 'elementor_header_footer'),
(311, 43, '_elementor_edit_mode', 'builder'),
(312, 43, '_elementor_template_type', 'wp-page'),
(313, 43, '_elementor_version', '4.0.1'),
(314, 43, '_elementor_pro_version', '3.25.4'),
(315, 43, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(316, 43, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#D7D7A000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(318, 43, '_elementor_page_settings', 'a:0:{}'),
(378, 49, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(837, 87, '_elementor_page_settings', 'a:0:{}'),
(403, 51, '_elementor_pro_version', '3.25.4'),
(404, 51, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(405, 51, '_wp_page_template', 'default'),
(406, 51, '_elementor_data', '[{\"id\":\"d3ae750\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fc10808\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4f9b77b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f12d87c\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#08203E14\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"876574e\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"3bc14cb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2061631\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88932f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"26ff0e8\"}],\"pp_display_conditions\":[{\"_id\":\"86b987c\"}]},\"elements\":[{\"id\":\"6382518\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/logo-15.png\",\"id\":47,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"1e840e0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"754dc3d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d4ffd9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"be2a022\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5bd3673\"}],\"pp_display_conditions\":[{\"_id\":\"0aa1f89\"}]},\"elements\":[{\"id\":\"d9830ef\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_background_color\":\"#BF515100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4b8d247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true}],\"isInner\":false}]'),
(321, 44, '_wp_page_template', 'elementor_header_footer'),
(322, 44, '_elementor_edit_mode', 'builder'),
(323, 44, '_elementor_template_type', 'wp-page'),
(324, 44, '_elementor_version', '4.0.1'),
(325, 44, '_elementor_pro_version', '3.25.4'),
(326, 44, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(327, 44, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#D7D7A000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(334, 45, '_elementor_edit_mode', 'builder'),
(335, 45, '_elementor_template_type', 'header'),
(336, 46, '_elementor_edit_mode', 'builder'),
(337, 46, '_elementor_template_type', 'header'),
(338, 45, '_elementor_version', '4.0.1'),
(339, 45, '_elementor_pro_version', '4.0.1'),
(340, 45, '_astra_content_layout_flag', 'disabled'),
(356, 45, '_elementor_data', '[{\"id\":\"5dc2a09\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9304530\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db274d5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e488ed\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"49a6def\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8e6943e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Book your complimentary consultation\",\"selected_icon\":{\"value\":\"far fa-calendar-alt\",\"library\":\"fa-regular\"},\"_id\":\"057ff9d\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"90f2d1d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_typography_typography\":\"custom\",\"icon_typography_text_transform\":\"capitalize\",\"icon_typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d3ae750\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fc10808\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4f9b77b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f12d87c\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#08203E14\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"876574e\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"3bc14cb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2061631\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88932f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"26ff0e8\"}],\"pp_display_conditions\":[{\"_id\":\"86b987c\"}]},\"elements\":[{\"id\":\"6382518\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/logo-15.png\",\"id\":47,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"1e840e0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"754dc3d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d4ffd9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"be2a022\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5bd3673\"}],\"pp_display_conditions\":[{\"_id\":\"0aa1f89\"}]},\"elements\":[{\"id\":\"d9830ef\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_background_color\":\"#BF515100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4b8d247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true}],\"isInner\":false}]'),
(342, 45, 'ast-title-bar-display', 'disabled'),
(343, 45, 'ast-featured-img', 'disabled'),
(344, 45, 'ast-site-content-layout', 'full-width-container'),
(345, 45, 'site-sidebar-layout', 'no-sidebar'),
(347, 45, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(348, 45, '_edit_lock', '1775549392:1'),
(350, 47, '_wp_attached_file', '2026/04/logo-15.png'),
(351, 47, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:462;s:6:\"height\";i:540;s:4:\"file\";s:19:\"2026/04/logo-15.png\";s:8:\"filesize\";i:72259;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"logo-15-257x300.png\";s:5:\"width\";i:257;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10913;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"logo-15-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4870;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(426, 53, '_wp_page_template', 'elementor_header_footer'),
(427, 53, '_elementor_edit_mode', 'builder'),
(428, 53, '_elementor_template_type', 'wp-page'),
(429, 53, '_elementor_version', '4.0.1'),
(430, 53, '_elementor_pro_version', '3.25.4'),
(431, 53, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(432, 53, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#D7D7A000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(433, 53, '_elementor_page_settings', 'a:0:{}'),
(725, 78, '_elementor_page_settings', 'a:0:{}'),
(726, 79, '_wp_page_template', 'elementor_header_footer'),
(727, 79, '_elementor_edit_mode', 'builder'),
(728, 79, '_elementor_template_type', 'wp-page'),
(729, 79, '_elementor_version', '4.0.1'),
(730, 79, '_elementor_pro_version', '3.25.4'),
(731, 79, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(732, 79, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dad12e1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"89485fc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7dc6ae8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8de978b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(438, 54, '_elementor_edit_mode', 'builder'),
(439, 54, '_elementor_template_type', 'wp-page'),
(440, 54, '_elementor_version', '4.0.1'),
(441, 54, '_elementor_pro_version', '3.25.4'),
(442, 54, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(443, 54, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#36360712\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(821, 86, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(524, 61, '_wp_page_template', 'elementor_header_footer'),
(502, 59, '_wp_page_template', 'elementor_header_footer'),
(503, 59, '_elementor_edit_mode', 'builder'),
(504, 59, '_elementor_template_type', 'wp-page'),
(505, 59, '_elementor_version', '4.0.1'),
(506, 59, '_elementor_pro_version', '3.25.4'),
(507, 59, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(508, 59, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(459, 55, '_elementor_page_settings', 'a:0:{}'),
(867, 90, '_elementor_template_type', 'wp-page'),
(868, 90, '_elementor_version', '4.0.1'),
(869, 90, '_elementor_pro_version', '3.25.4'),
(870, 90, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(871, 90, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dad12e1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"89485fc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"7dc6ae8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8de978b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(462, 56, '_wp_page_template', 'elementor_header_footer'),
(463, 56, '_elementor_edit_mode', 'builder'),
(464, 56, '_elementor_template_type', 'wp-page'),
(465, 56, '_elementor_version', '4.0.1'),
(466, 56, '_elementor_pro_version', '3.25.4'),
(467, 56, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(468, 56, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#36360712\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(470, 56, '_elementor_page_settings', 'a:0:{}'),
(474, 57, '_elementor_edit_mode', 'builder'),
(475, 57, '_elementor_template_type', 'wp-page'),
(476, 57, '_elementor_version', '4.0.1'),
(477, 57, '_elementor_pro_version', '3.25.4'),
(478, 57, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(479, 57, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(554, 64, '_wp_page_template', 'elementor_header_footer'),
(536, 62, '_wp_page_template', 'elementor_header_footer'),
(537, 62, '_elementor_edit_mode', 'builder'),
(538, 62, '_elementor_template_type', 'wp-page'),
(539, 62, '_elementor_version', '4.0.1'),
(540, 62, '_elementor_pro_version', '3.25.4'),
(541, 62, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(542, 62, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(495, 58, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(800, 85, '_wp_page_template', 'elementor_header_footer'),
(801, 85, '_elementor_edit_mode', 'builder'),
(802, 85, '_elementor_template_type', 'wp-page'),
(803, 85, '_elementor_version', '4.0.1'),
(804, 85, '_elementor_pro_version', '3.25.4'),
(805, 85, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(806, 85, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dad12e1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"89485fc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"7dc6ae8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8de978b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(797, 84, '_elementor_page_settings', 'a:0:{}'),
(510, 59, '_elementor_page_settings', 'a:0:{}'),
(513, 60, '_wp_page_template', 'elementor_header_footer'),
(514, 60, '_elementor_edit_mode', 'builder'),
(515, 60, '_elementor_template_type', 'wp-page'),
(516, 60, '_elementor_version', '4.0.1'),
(517, 60, '_elementor_pro_version', '3.25.4'),
(518, 60, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(519, 60, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(521, 60, '_elementor_page_settings', 'a:0:{}'),
(789, 84, '_wp_page_template', 'elementor_header_footer'),
(790, 84, '_elementor_edit_mode', 'builder'),
(791, 84, '_elementor_template_type', 'wp-page'),
(792, 84, '_elementor_version', '4.0.1'),
(793, 84, '_elementor_pro_version', '3.25.4'),
(794, 84, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(795, 84, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dad12e1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"89485fc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"7dc6ae8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8de978b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(525, 61, '_elementor_edit_mode', 'builder'),
(526, 61, '_elementor_template_type', 'wp-page'),
(527, 61, '_elementor_version', '4.0.1'),
(528, 61, '_elementor_pro_version', '3.25.4'),
(529, 61, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(530, 61, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(717, 77, '_elementor_page_settings', 'a:0:{}'),
(718, 78, '_wp_page_template', 'elementor_header_footer'),
(719, 78, '_elementor_edit_mode', 'builder'),
(720, 78, '_elementor_template_type', 'wp-page'),
(721, 78, '_elementor_version', '4.0.1'),
(722, 78, '_elementor_pro_version', '3.25.4'),
(723, 78, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(724, 78, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dad12e1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"89485fc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7dc6ae8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8de978b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(544, 62, '_elementor_page_settings', 'a:0:{}'),
(545, 63, '_wp_page_template', 'elementor_header_footer'),
(546, 63, '_elementor_edit_mode', 'builder'),
(547, 63, '_elementor_template_type', 'wp-page'),
(548, 63, '_elementor_version', '4.0.1'),
(549, 63, '_elementor_pro_version', '3.25.4'),
(550, 63, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(551, 63, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(553, 63, '_elementor_page_settings', 'a:0:{}'),
(555, 64, '_elementor_edit_mode', 'builder'),
(556, 64, '_elementor_template_type', 'wp-page'),
(557, 64, '_elementor_version', '4.0.1'),
(558, 64, '_elementor_pro_version', '3.25.4'),
(559, 64, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(560, 64, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(566, 65, '_wp_page_template', 'elementor_header_footer'),
(567, 65, '_elementor_edit_mode', 'builder'),
(568, 65, '_elementor_template_type', 'wp-page'),
(569, 65, '_elementor_version', '4.0.1'),
(570, 65, '_elementor_pro_version', '3.25.4'),
(571, 65, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(572, 65, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(626, 70, '_elementor_template_type', 'wp-page'),
(602, 68, '_wp_page_template', 'elementor_header_footer'),
(603, 68, '_elementor_edit_mode', 'builder'),
(604, 68, '_elementor_template_type', 'wp-page'),
(605, 68, '_elementor_version', '4.0.1'),
(606, 68, '_elementor_pro_version', '3.25.4'),
(607, 68, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(608, 68, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04d5a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"pp_display_conditions\":[{\"_id\":\"679c966\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(674, 74, '_wp_page_template', 'elementor_header_footer'),
(675, 74, '_elementor_edit_mode', 'builder'),
(676, 74, '_elementor_template_type', 'wp-page'),
(677, 74, '_elementor_version', '4.0.1'),
(678, 74, '_elementor_pro_version', '3.25.4'),
(679, 74, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(680, 74, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dc6ae8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8de978b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(742, 80, '_wp_page_template', 'elementor_header_footer'),
(829, 87, '_wp_page_template', 'elementor_header_footer'),
(574, 65, '_elementor_page_settings', 'a:0:{}'),
(786, 83, '_elementor_page_settings', 'a:0:{}'),
(577, 66, '_wp_page_template', 'elementor_header_footer'),
(578, 66, '_elementor_edit_mode', 'builder'),
(579, 66, '_elementor_template_type', 'wp-page'),
(580, 66, '_elementor_version', '4.0.1'),
(581, 66, '_elementor_pro_version', '3.25.4'),
(582, 66, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(583, 66, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(585, 66, '_elementor_page_settings', 'a:0:{}'),
(624, 70, '_wp_page_template', 'elementor_header_footer'),
(625, 70, '_elementor_edit_mode', 'builder'),
(588, 67, '_wp_page_template', 'elementor_header_footer'),
(589, 67, '_elementor_edit_mode', 'builder'),
(590, 67, '_elementor_template_type', 'wp-page'),
(591, 67, '_elementor_version', '4.0.1'),
(592, 67, '_elementor_pro_version', '3.25.4'),
(593, 67, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(594, 67, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04d5a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"pp_display_conditions\":[{\"_id\":\"679c966\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1616, 163, '_elementor_page_settings', 'a:0:{}'),
(1618, 164, '_elementor_edit_mode', 'builder'),
(1619, 164, '_elementor_template_type', 'wp-page'),
(1620, 164, '_elementor_version', '4.0.1'),
(1621, 164, '_elementor_pro_version', '4.0.1'),
(1622, 164, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(1623, 164, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"view\":\"framed\",\"size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor3\",\"secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(830, 87, '_elementor_edit_mode', 'builder'),
(831, 87, '_elementor_template_type', 'wp-page'),
(832, 87, '_elementor_version', '4.0.1'),
(833, 87, '_elementor_pro_version', '3.25.4'),
(834, 87, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(835, 87, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dad12e1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"89485fc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"7dc6ae8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8de978b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(638, 71, '_wp_page_template', 'elementor_header_footer'),
(639, 71, '_elementor_edit_mode', 'builder'),
(640, 71, '_elementor_template_type', 'wp-page'),
(641, 71, '_elementor_version', '4.0.1'),
(642, 71, '_elementor_pro_version', '3.25.4'),
(643, 71, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(644, 71, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(610, 68, '_elementor_page_settings', 'a:0:{}'),
(613, 69, '_wp_page_template', 'elementor_header_footer'),
(614, 69, '_elementor_edit_mode', 'builder'),
(615, 69, '_elementor_template_type', 'wp-page'),
(616, 69, '_elementor_version', '4.0.1'),
(617, 69, '_elementor_pro_version', '3.25.4'),
(618, 69, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(619, 69, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04d5a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"pp_display_conditions\":[{\"_id\":\"679c966\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(621, 69, '_elementor_page_settings', 'a:0:{}'),
(627, 70, '_elementor_version', '4.0.1'),
(628, 70, '_elementor_pro_version', '3.25.4'),
(629, 70, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(630, 70, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(764, 82, '_wp_page_template', 'elementor_header_footer'),
(765, 82, '_elementor_edit_mode', 'builder'),
(766, 82, '_elementor_template_type', 'wp-page'),
(767, 82, '_elementor_version', '4.0.1'),
(768, 82, '_elementor_pro_version', '3.25.4'),
(769, 82, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(770, 82, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dad12e1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"89485fc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"7dc6ae8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8de978b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(646, 71, '_elementor_page_settings', 'a:0:{}'),
(761, 81, '_elementor_page_settings', 'a:0:{}'),
(649, 72, '_wp_page_template', 'elementor_header_footer'),
(650, 72, '_elementor_edit_mode', 'builder'),
(651, 72, '_elementor_template_type', 'wp-page'),
(652, 72, '_elementor_version', '4.0.1'),
(653, 72, '_elementor_pro_version', '3.25.4'),
(654, 72, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(655, 72, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(657, 72, '_elementor_page_settings', 'a:0:{}'),
(660, 73, '_wp_page_template', 'elementor_header_footer'),
(661, 73, '_elementor_edit_mode', 'builder'),
(662, 73, '_elementor_template_type', 'wp-page'),
(663, 73, '_elementor_version', '4.0.1'),
(664, 73, '_elementor_pro_version', '3.25.4'),
(665, 73, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(666, 73, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dc6ae8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8de978b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(753, 81, '_wp_page_template', 'elementor_header_footer'),
(754, 81, '_elementor_edit_mode', 'builder'),
(755, 81, '_elementor_template_type', 'wp-page'),
(756, 81, '_elementor_version', '4.0.1'),
(757, 81, '_elementor_pro_version', '3.25.4'),
(758, 81, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(759, 81, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dad12e1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"89485fc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7dc6ae8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8de978b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(710, 77, '_wp_page_template', 'elementor_header_footer'),
(711, 77, '_elementor_edit_mode', 'builder'),
(712, 77, '_elementor_template_type', 'wp-page'),
(713, 77, '_elementor_version', '4.0.1'),
(714, 77, '_elementor_pro_version', '3.25.4'),
(715, 77, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(716, 77, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dad12e1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"89485fc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7dc6ae8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8de978b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(682, 74, '_elementor_page_settings', 'a:0:{}'),
(750, 80, '_elementor_page_settings', 'a:0:{}'),
(685, 75, '_wp_page_template', 'elementor_header_footer'),
(686, 75, '_elementor_edit_mode', 'builder'),
(687, 75, '_elementor_template_type', 'wp-page'),
(688, 75, '_elementor_version', '4.0.1'),
(689, 75, '_elementor_pro_version', '3.25.4'),
(690, 75, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(691, 75, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dc6ae8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8de978b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(693, 75, '_elementor_page_settings', 'a:0:{}'),
(778, 83, '_wp_page_template', 'elementor_header_footer'),
(779, 83, '_elementor_edit_mode', 'builder'),
(780, 83, '_elementor_template_type', 'wp-page'),
(781, 83, '_elementor_version', '4.0.1'),
(782, 83, '_elementor_pro_version', '3.25.4'),
(783, 83, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(784, 83, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dad12e1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"89485fc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"7dc6ae8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8de978b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(865, 90, '_wp_page_template', 'elementor_header_footer'),
(866, 90, '_elementor_edit_mode', 'builder'),
(696, 76, '_wp_page_template', 'elementor_header_footer'),
(697, 76, '_elementor_edit_mode', 'builder'),
(698, 76, '_elementor_template_type', 'wp-page'),
(699, 76, '_elementor_version', '4.0.1'),
(700, 76, '_elementor_pro_version', '3.25.4'),
(701, 76, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(702, 76, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dad12e1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"89485fc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7dc6ae8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8de978b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(3997, 379, '_elementor_edit_mode', 'builder'),
(3998, 379, '_elementor_template_type', 'header'),
(3999, 379, '_elementor_version', '4.0.1'),
(4000, 379, '_elementor_pro_version', '3.25.4'),
(4001, 379, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4002, 379, '_wp_page_template', 'default'),
(4003, 379, '_elementor_data', '[{\"id\":\"5dc2a09\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9304530\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db274d5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e488ed\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"49a6def\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8e6943e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Book your complimentary consultation\",\"selected_icon\":{\"value\":\"far fa-calendar-alt\",\"library\":\"fa-regular\"},\"_id\":\"057ff9d\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"90f2d1d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d3ae750\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fc10808\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4f9b77b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f12d87c\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#08203E14\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"876574e\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"3bc14cb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2061631\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88932f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"26ff0e8\"}],\"pp_display_conditions\":[{\"_id\":\"86b987c\"}]},\"elements\":[{\"id\":\"6382518\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/logo-15.png\",\"id\":47,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"1e840e0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"754dc3d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d4ffd9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"be2a022\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5bd3673\"}],\"pp_display_conditions\":[{\"_id\":\"0aa1f89\"}]},\"elements\":[{\"id\":\"d9830ef\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_background_color\":\"#BF515100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4b8d247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true}],\"isInner\":false}]'),
(743, 80, '_elementor_edit_mode', 'builder'),
(744, 80, '_elementor_template_type', 'wp-page'),
(745, 80, '_elementor_version', '4.0.1'),
(746, 80, '_elementor_pro_version', '3.25.4'),
(747, 80, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(748, 80, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dad12e1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"89485fc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7dc6ae8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8de978b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(840, 88, '_wp_page_template', 'elementor_header_footer'),
(841, 88, '_elementor_edit_mode', 'builder'),
(842, 88, '_elementor_template_type', 'wp-page'),
(843, 88, '_elementor_version', '4.0.1'),
(844, 88, '_elementor_pro_version', '3.25.4'),
(845, 88, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(846, 88, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dad12e1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"89485fc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"7dc6ae8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8de978b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(848, 88, '_elementor_page_settings', 'a:0:{}'),
(851, 89, '_wp_page_template', 'elementor_header_footer'),
(852, 89, '_elementor_edit_mode', 'builder'),
(853, 89, '_elementor_template_type', 'wp-page'),
(854, 89, '_elementor_version', '4.0.1'),
(855, 89, '_elementor_pro_version', '3.25.4'),
(856, 89, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(857, 89, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dad12e1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"89485fc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"7dc6ae8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8de978b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(923, 95, '_wp_page_template', 'elementor_header_footer'),
(901, 93, '_wp_page_template', 'elementor_header_footer'),
(902, 93, '_elementor_edit_mode', 'builder'),
(903, 93, '_elementor_template_type', 'wp-page'),
(904, 93, '_elementor_version', '4.0.1'),
(905, 93, '_elementor_pro_version', '3.25.4'),
(906, 93, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(907, 93, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(873, 90, '_elementor_page_settings', 'a:0:{}'),
(876, 91, '_wp_page_template', 'elementor_header_footer'),
(877, 91, '_elementor_edit_mode', 'builder'),
(878, 91, '_elementor_template_type', 'wp-page'),
(879, 91, '_elementor_version', '4.0.1'),
(880, 91, '_elementor_pro_version', '3.25.4'),
(881, 91, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(882, 91, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"dad12e1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e053a48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"89485fc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"7dc6ae8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8de978b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(884, 91, '_elementor_page_settings', 'a:0:{}'),
(887, 92, '_wp_page_template', 'elementor_header_footer'),
(888, 92, '_elementor_edit_mode', 'builder'),
(889, 92, '_elementor_template_type', 'wp-page'),
(890, 92, '_elementor_version', '4.0.1'),
(891, 92, '_elementor_pro_version', '3.25.4'),
(892, 92, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(893, 92, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(937, 96, '_wp_page_template', 'elementor_header_footer'),
(938, 96, '_elementor_edit_mode', 'builder'),
(939, 96, '_elementor_template_type', 'wp-page'),
(940, 96, '_elementor_version', '4.0.1'),
(941, 96, '_elementor_pro_version', '3.25.4'),
(942, 96, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(943, 96, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(1007, 102, '_wp_page_template', 'elementor_header_footer'),
(1008, 102, '_elementor_edit_mode', 'builder'),
(1009, 102, '_elementor_template_type', 'wp-page'),
(1010, 102, '_elementor_version', '4.0.1'),
(1011, 102, '_elementor_pro_version', '3.25.4'),
(1012, 102, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1013, 102, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(909, 93, '_elementor_page_settings', 'a:0:{}'),
(912, 94, '_wp_page_template', 'elementor_header_footer'),
(913, 94, '_elementor_edit_mode', 'builder'),
(914, 94, '_elementor_template_type', 'wp-page'),
(915, 94, '_elementor_version', '4.0.1'),
(916, 94, '_elementor_pro_version', '3.25.4'),
(917, 94, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(918, 94, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(920, 94, '_elementor_page_settings', 'a:0:{}'),
(924, 95, '_elementor_edit_mode', 'builder'),
(925, 95, '_elementor_template_type', 'wp-page'),
(926, 95, '_elementor_version', '4.0.1'),
(927, 95, '_elementor_pro_version', '3.25.4'),
(928, 95, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(929, 95, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(973, 99, '_wp_page_template', 'elementor_header_footer'),
(974, 99, '_elementor_edit_mode', 'builder'),
(975, 99, '_elementor_template_type', 'wp-page'),
(976, 99, '_elementor_version', '4.0.1'),
(977, 99, '_elementor_pro_version', '3.25.4'),
(978, 99, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(979, 99, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(945, 96, '_elementor_page_settings', 'a:0:{}'),
(1587, 161, '_wp_page_template', 'elementor_header_footer'),
(1588, 161, '_elementor_edit_mode', 'builder'),
(1589, 161, '_elementor_template_type', 'wp-page'),
(1590, 161, '_elementor_version', '4.0.1'),
(1591, 161, '_elementor_pro_version', '4.0.1'),
(1592, 161, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(1593, 161, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"view\":\"framed\",\"primary_color\":\"#01122657\",\"size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(948, 97, '_wp_page_template', 'elementor_header_footer'),
(949, 97, '_elementor_edit_mode', 'builder'),
(950, 97, '_elementor_template_type', 'wp-page'),
(951, 97, '_elementor_version', '4.0.1'),
(952, 97, '_elementor_pro_version', '3.25.4'),
(953, 97, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(954, 97, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(956, 97, '_elementor_page_settings', 'a:0:{}'),
(959, 98, '_wp_page_template', 'elementor_header_footer'),
(960, 98, '_elementor_edit_mode', 'builder'),
(961, 98, '_elementor_template_type', 'wp-page'),
(962, 98, '_elementor_version', '4.0.1'),
(963, 98, '_elementor_pro_version', '3.25.4'),
(964, 98, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(965, 98, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(981, 99, '_elementor_page_settings', 'a:0:{}'),
(984, 100, '_wp_page_template', 'elementor_header_footer'),
(985, 100, '_elementor_edit_mode', 'builder'),
(986, 100, '_elementor_template_type', 'wp-page'),
(987, 100, '_elementor_version', '4.0.1'),
(988, 100, '_elementor_pro_version', '3.25.4'),
(989, 100, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(990, 100, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(992, 100, '_elementor_page_settings', 'a:0:{}'),
(1584, 160, '_elementor_page_settings', 'a:0:{}'),
(995, 101, '_wp_page_template', 'elementor_header_footer'),
(996, 101, '_elementor_edit_mode', 'builder'),
(997, 101, '_elementor_template_type', 'wp-page'),
(998, 101, '_elementor_version', '4.0.1'),
(999, 101, '_elementor_pro_version', '3.25.4'),
(1000, 101, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1001, 101, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(1015, 102, '_elementor_page_settings', 'a:0:{}'),
(1016, 103, '_wp_page_template', 'elementor_header_footer'),
(1017, 103, '_elementor_edit_mode', 'builder'),
(1018, 103, '_elementor_template_type', 'wp-page'),
(1019, 103, '_elementor_version', '4.0.1'),
(1020, 103, '_elementor_pro_version', '3.25.4'),
(1021, 103, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(1022, 103, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(1024, 103, '_elementor_page_settings', 'a:0:{}'),
(1025, 104, '_wp_page_template', 'elementor_header_footer'),
(1026, 104, '_elementor_edit_mode', 'builder'),
(1027, 104, '_elementor_template_type', 'wp-page'),
(1028, 104, '_elementor_version', '4.0.1'),
(1029, 104, '_elementor_pro_version', '3.25.4'),
(1030, 104, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(1031, 104, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"263ccc2\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a1ea496\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"46b0bf9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1037, 105, '_wp_page_template', 'elementor_header_footer'),
(1038, 105, '_elementor_edit_mode', 'builder'),
(1039, 105, '_elementor_template_type', 'wp-page'),
(1040, 105, '_elementor_version', '4.0.1'),
(1041, 105, '_elementor_pro_version', '3.25.4'),
(1042, 105, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1043, 105, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"263ccc2\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a1ea496\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"46b0bf9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1077, 110, '_wp_page_template', 'elementor_header_footer'),
(1078, 110, '_elementor_edit_mode', 'builder'),
(1079, 110, '_elementor_template_type', 'wp-page'),
(1080, 110, '_elementor_version', '4.0.1'),
(1081, 110, '_elementor_pro_version', '3.25.4'),
(1082, 110, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(1083, 110, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"263ccc2\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a1ea496\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"46b0bf9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1243, 130, '_wp_page_template', 'elementor_header_footer'),
(1244, 130, '_elementor_edit_mode', 'builder'),
(1245, 130, '_elementor_template_type', 'wp-page'),
(1246, 130, '_elementor_version', '4.0.1'),
(1247, 130, '_elementor_pro_version', '3.25.4'),
(1248, 130, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1249, 130, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}]},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"b9a6c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1045, 105, '_elementor_page_settings', 'a:0:{}'),
(1576, 160, '_wp_page_template', 'elementor_header_footer'),
(1577, 160, '_elementor_edit_mode', 'builder'),
(1578, 160, '_elementor_template_type', 'wp-page'),
(1579, 160, '_elementor_version', '4.0.1'),
(1580, 160, '_elementor_pro_version', '4.0.1'),
(1581, 160, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1582, 160, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"view\":\"framed\",\"primary_color\":\"#01122657\",\"size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1048, 106, '_wp_page_template', 'elementor_header_footer'),
(1049, 106, '_elementor_edit_mode', 'builder'),
(1050, 106, '_elementor_template_type', 'wp-page'),
(1051, 106, '_elementor_version', '4.0.1'),
(1052, 106, '_elementor_pro_version', '3.25.4'),
(1053, 106, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(1054, 106, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"263ccc2\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a1ea496\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"46b0bf9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1056, 106, '_elementor_page_settings', 'a:0:{}'),
(1059, 107, '_wp_page_template', 'elementor_header_footer'),
(1060, 107, '_elementor_edit_mode', 'builder'),
(1061, 107, '_elementor_template_type', 'wp-page'),
(1062, 107, '_elementor_version', '4.0.1'),
(1063, 107, '_elementor_pro_version', '3.25.4'),
(1064, 107, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1065, 107, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"263ccc2\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a1ea496\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"46b0bf9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1125, 119, '_wp_page_template', 'elementor_header_footer'),
(1126, 119, '_elementor_edit_mode', 'builder'),
(1127, 119, '_elementor_template_type', 'wp-page'),
(1128, 119, '_elementor_version', '4.0.1'),
(1129, 119, '_elementor_pro_version', '3.25.4'),
(1130, 119, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(1131, 119, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1073, 108, '_wp_attached_file', '2026/04/my-work-5.jpg'),
(1074, 108, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2026/04/my-work-5.jpg\";s:8:\"filesize\";i:57488;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"my-work-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:14845;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"my-work-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:6077;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"my-work-5-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57843;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1075, 109, '_wp_attached_file', '2026/04/my-work-7.jpg'),
(1076, 109, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2026/04/my-work-7.jpg\";s:8:\"filesize\";i:61690;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"my-work-7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16205;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"my-work-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6731;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"my-work-7-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61972;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1085, 110, '_elementor_page_settings', 'a:0:{}'),
(1573, 159, '_elementor_page_settings', 'a:0:{}'),
(1088, 111, '_wp_page_template', 'elementor_header_footer'),
(1089, 111, '_elementor_edit_mode', 'builder'),
(1090, 111, '_elementor_template_type', 'wp-page'),
(1091, 111, '_elementor_version', '4.0.1'),
(1092, 111, '_elementor_pro_version', '3.25.4'),
(1093, 111, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(1094, 111, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"263ccc2\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a1ea496\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"46b0bf9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1096, 111, '_elementor_page_settings', 'a:0:{}'),
(1099, 112, '_wp_page_template', 'elementor_header_footer'),
(1100, 112, '_elementor_edit_mode', 'builder'),
(1101, 112, '_elementor_template_type', 'wp-page'),
(1102, 112, '_elementor_version', '4.0.1'),
(1103, 112, '_elementor_pro_version', '3.25.4'),
(1104, 112, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1105, 112, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1831, 183, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(1617, 164, '_wp_page_template', 'elementor_header_footer'),
(1599, 162, '_wp_page_template', 'elementor_header_footer'),
(1600, 162, '_elementor_edit_mode', 'builder'),
(1601, 162, '_elementor_template_type', 'wp-page'),
(1602, 162, '_elementor_version', '4.0.1'),
(1603, 162, '_elementor_pro_version', '4.0.1'),
(1604, 162, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(1605, 162, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"view\":\"framed\",\"primary_color\":\"#01122657\",\"size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1183, 124, '_wp_page_template', 'elementor_header_footer'),
(1161, 122, '_wp_page_template', 'elementor_header_footer'),
(1162, 122, '_elementor_edit_mode', 'builder'),
(1163, 122, '_elementor_template_type', 'wp-page'),
(1164, 122, '_elementor_version', '4.0.1'),
(1165, 122, '_elementor_pro_version', '3.25.4'),
(1166, 122, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1167, 122, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1113, 113, '_wp_attached_file', '2026/04/my-work-2.jpg'),
(1114, 113, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2026/04/my-work-2.jpg\";s:8:\"filesize\";i:52237;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"my-work-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:13921;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"my-work-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:5770;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"my-work-2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53449;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1115, 114, '_wp_attached_file', '2026/04/my-work-3.jpg'),
(1116, 114, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2026/04/my-work-3.jpg\";s:8:\"filesize\";i:69404;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"my-work-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:15170;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"my-work-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:5786;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"my-work-3-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68690;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1117, 115, '_wp_attached_file', '2026/04/my-work-4.jpg'),
(1118, 115, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2026/04/my-work-4.jpg\";s:8:\"filesize\";i:36292;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"my-work-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:11269;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"my-work-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:5349;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"my-work-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:37533;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1119, 116, '_wp_attached_file', '2026/04/my-work-1.jpg'),
(1120, 116, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2026/04/my-work-1.jpg\";s:8:\"filesize\";i:35155;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"my-work-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:10200;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"my-work-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:4907;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"my-work-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:35359;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1121, 117, '_wp_attached_file', '2026/04/my-work-6.jpg'),
(1122, 117, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2026/04/my-work-6.jpg\";s:8:\"filesize\";i:107427;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"my-work-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:19404;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"my-work-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:7159;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"my-work-6-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99098;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1123, 118, '_wp_attached_file', '2026/04/my-work.jpg'),
(1124, 118, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:19:\"2026/04/my-work.jpg\";s:8:\"filesize\";i:44233;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"my-work-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11897;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"my-work-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4904;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"my-work-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45621;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1133, 119, '_elementor_page_settings', 'a:0:{}'),
(1136, 120, '_wp_page_template', 'elementor_header_footer'),
(1137, 120, '_elementor_edit_mode', 'builder'),
(1138, 120, '_elementor_template_type', 'wp-page'),
(1139, 120, '_elementor_version', '4.0.1'),
(1140, 120, '_elementor_pro_version', '3.25.4'),
(1141, 120, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(1142, 120, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1144, 120, '_elementor_page_settings', 'a:0:{}'),
(1607, 162, '_elementor_page_settings', 'a:0:{}'),
(1608, 163, '_wp_page_template', 'elementor_header_footer'),
(1609, 163, '_elementor_edit_mode', 'builder'),
(1610, 163, '_elementor_template_type', 'wp-page'),
(1611, 163, '_elementor_version', '4.0.1'),
(1612, 163, '_elementor_pro_version', '4.0.1'),
(1613, 163, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1614, 163, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"view\":\"framed\",\"primary_color\":\"#01122657\",\"size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1147, 121, '_wp_page_template', 'elementor_header_footer'),
(1148, 121, '_elementor_edit_mode', 'builder'),
(1149, 121, '_elementor_template_type', 'wp-page'),
(1150, 121, '_elementor_version', '4.0.1'),
(1151, 121, '_elementor_pro_version', '3.25.4'),
(1152, 121, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1153, 121, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1565, 159, '_wp_page_template', 'elementor_header_footer'),
(1566, 159, '_elementor_edit_mode', 'builder'),
(1567, 159, '_elementor_template_type', 'wp-page'),
(1568, 159, '_elementor_version', '4.0.1'),
(1569, 159, '_elementor_pro_version', '4.0.1'),
(1570, 159, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1571, 159, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"view\":\"framed\",\"primary_color\":\"#01122657\",\"size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1212, 127, '_wp_page_template', 'elementor_header_footer'),
(1213, 127, '_elementor_edit_mode', 'builder'),
(1214, 127, '_elementor_template_type', 'wp-page'),
(1215, 127, '_elementor_version', '4.0.1'),
(1216, 127, '_elementor_pro_version', '3.25.4'),
(1217, 127, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1218, 127, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1169, 122, '_elementor_page_settings', 'a:0:{}'),
(1172, 123, '_wp_page_template', 'elementor_header_footer'),
(1173, 123, '_elementor_edit_mode', 'builder'),
(1174, 123, '_elementor_template_type', 'wp-page'),
(1175, 123, '_elementor_version', '4.0.1'),
(1176, 123, '_elementor_pro_version', '3.25.4'),
(1177, 123, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(1178, 123, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1180, 123, '_elementor_page_settings', 'a:0:{}'),
(1552, 157, '_elementor_page_settings', 'a:0:{}'),
(1554, 158, '_elementor_edit_mode', 'builder'),
(1555, 158, '_elementor_template_type', 'wp-page'),
(1556, 158, '_elementor_version', '4.0.1'),
(1557, 158, '_elementor_pro_version', '4.0.1'),
(1558, 158, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1559, 158, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"view\":\"framed\",\"primary_color\":\"#01122657\",\"size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1184, 124, '_elementor_edit_mode', 'builder'),
(1185, 124, '_elementor_template_type', 'wp-page'),
(1186, 124, '_elementor_version', '4.0.1'),
(1187, 124, '_elementor_pro_version', '3.25.4'),
(1188, 124, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1189, 124, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1232, 129, '_wp_page_template', 'elementor_header_footer'),
(1233, 129, '_elementor_edit_mode', 'builder'),
(1234, 129, '_elementor_template_type', 'wp-page'),
(1235, 129, '_elementor_version', '4.0.1'),
(1236, 129, '_elementor_pro_version', '3.25.4'),
(1237, 129, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(1238, 129, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}]},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"b9a6c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1209, 126, '_wp_attached_file', '2026/04/check-mark_18359833.svg'),
(1210, 126, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:549;s:5:\"width\";i:100;s:6:\"height\";i:100;}'),
(1220, 127, '_elementor_page_settings', 'a:0:{}'),
(3877, 369, '_wp_page_template', 'elementor_header_footer'),
(3878, 369, '_elementor_edit_mode', 'builder'),
(3879, 369, '_elementor_template_type', 'wp-page'),
(3880, 369, '_elementor_version', '4.0.1'),
(1856, 186, '_wp_page_template', 'elementor_header_footer'),
(1222, 128, '_wp_page_template', 'elementor_header_footer'),
(1223, 128, '_elementor_edit_mode', 'builder'),
(1224, 128, '_elementor_template_type', 'wp-page'),
(1225, 128, '_elementor_version', '4.0.1'),
(1226, 128, '_elementor_pro_version', '3.25.4'),
(1227, 128, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1228, 128, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1230, 128, '_elementor_page_settings', 'a:0:{}'),
(1472, 150, '_elementor_page_settings', 'a:0:{}'),
(3876, 368, '_elementor_page_settings', 'a:0:{}'),
(3882, 369, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3883, 369, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"758369f\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1251, 130, '_elementor_page_settings', 'a:0:{}'),
(1252, 131, '_wp_page_template', 'elementor_header_footer'),
(1253, 131, '_elementor_edit_mode', 'builder'),
(1254, 131, '_elementor_template_type', 'wp-page'),
(1255, 131, '_elementor_version', '4.0.1'),
(1256, 131, '_elementor_pro_version', '3.25.4'),
(1257, 131, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1258, 131, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}]},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"b9a6c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1260, 131, '_elementor_page_settings', 'a:0:{}'),
(1261, 132, '_wp_page_template', 'elementor_header_footer'),
(1262, 132, '_elementor_edit_mode', 'builder'),
(1263, 132, '_elementor_template_type', 'wp-page'),
(1264, 132, '_elementor_version', '4.0.1'),
(1265, 132, '_elementor_pro_version', '3.25.4'),
(1266, 132, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(1267, 132, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style{\\n    \\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"b9a6c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1271, 133, '_wp_page_template', 'elementor_header_footer'),
(1272, 133, '_elementor_edit_mode', 'builder'),
(1273, 133, '_elementor_template_type', 'wp-page'),
(1274, 133, '_elementor_version', '4.0.1'),
(1275, 133, '_elementor_pro_version', '3.25.4'),
(1276, 133, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1277, 133, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style{\\n    \\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"b9a6c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1279, 133, '_elementor_page_settings', 'a:0:{}'),
(1280, 134, '_wp_page_template', 'elementor_header_footer'),
(1281, 134, '_elementor_edit_mode', 'builder'),
(1282, 134, '_elementor_template_type', 'wp-page'),
(1283, 134, '_elementor_version', '4.0.1'),
(1284, 134, '_elementor_pro_version', '3.25.4'),
(1285, 134, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(1286, 134, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style{\\n    \\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"b9a6c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1288, 134, '_elementor_page_settings', 'a:0:{}'),
(1289, 135, '_wp_page_template', 'elementor_header_footer'),
(1290, 135, '_elementor_edit_mode', 'builder'),
(1291, 135, '_elementor_template_type', 'wp-page'),
(1292, 135, '_elementor_version', '4.0.1'),
(1293, 135, '_elementor_pro_version', '3.25.4'),
(1294, 135, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1295, 135, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style{\\n    \\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"b9a6c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1301, 136, '_wp_page_template', 'elementor_header_footer'),
(1302, 136, '_elementor_edit_mode', 'builder'),
(1303, 136, '_elementor_template_type', 'wp-page'),
(1304, 136, '_elementor_version', '4.0.1'),
(1305, 136, '_elementor_pro_version', '3.25.4'),
(1306, 136, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(1307, 136, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style{\\n    \\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"b9a6c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1337, 139, '_wp_page_template', 'elementor_header_footer'),
(1338, 139, '_elementor_edit_mode', 'builder'),
(1339, 139, '_elementor_template_type', 'wp-page'),
(1340, 139, '_elementor_version', '4.0.1'),
(1341, 139, '_elementor_pro_version', '3.25.4'),
(1342, 139, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1343, 139, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"b9a6c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1465, 150, '_wp_page_template', 'elementor_header_footer'),
(1466, 150, '_elementor_edit_mode', 'builder'),
(1467, 150, '_elementor_template_type', 'wp-page'),
(1468, 150, '_elementor_version', '4.0.1'),
(1469, 150, '_elementor_pro_version', '3.25.4'),
(1470, 150, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1471, 150, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1309, 136, '_elementor_page_settings', 'a:0:{}'),
(4439, 417, '_wp_page_template', 'elementor_header_footer'),
(4421, 415, '_wp_page_template', 'elementor_header_footer'),
(4422, 415, '_elementor_edit_mode', 'builder'),
(4423, 415, '_elementor_template_type', 'wp-page'),
(4424, 415, '_elementor_version', '4.0.1'),
(4425, 415, '_elementor_pro_version', '4.0.1'),
(4426, 415, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4427, 415, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}],\"css_classes\":\"form_style\",\"custom_css\":\".form_style .elementor-field-option a:hover{\\n    color:#0B6623;\\n    text-decoration: underline;\\n}\"},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"<span style=\\\"font-size:13px;font-style: italic;\\\"> Includes examination and, if needed, X-rays. One-time offer for new patients booking online. Treatment not included. <a href=\\\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjM5MiIsInRvZ2dsZSI6ZmFsc2V9\\\">Terms apply.<\\/a>\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4429, 415, '_elementor_page_settings', 'a:0:{}'),
(4430, 416, '_wp_page_template', 'elementor_header_footer'),
(4431, 416, '_elementor_edit_mode', 'builder'),
(4432, 416, '_elementor_template_type', 'wp-page'),
(4433, 416, '_elementor_version', '4.0.1'),
(4434, 416, '_elementor_pro_version', '4.0.1'),
(4435, 416, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4436, 416, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}],\"css_classes\":\"form_style\",\"custom_css\":\".form_style .elementor-field-option a:hover{\\n    color:#0B6623;\\n    text-decoration: underline;\\n}\"},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"<span style=\\\"font-size:13px;font-style: italic;\\\"> Includes examination and, if needed, X-rays. One-time offer for new patients booking online. Treatment not included. <a href=\\\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjM5MiIsInRvZ2dsZSI6ZmFsc2V9\\\">Terms apply.<\\/a>\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(1312, 137, '_wp_page_template', 'elementor_header_footer'),
(1313, 137, '_elementor_edit_mode', 'builder'),
(1314, 137, '_elementor_template_type', 'wp-page'),
(1315, 137, '_elementor_version', '4.0.1'),
(1316, 137, '_elementor_pro_version', '3.25.4'),
(1317, 137, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(1318, 137, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style{\\n    \\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"b9a6c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1320, 137, '_elementor_page_settings', 'a:0:{}'),
(1523, 155, '_wp_page_template', 'elementor_header_footer'),
(1524, 155, '_elementor_edit_mode', 'builder'),
(1525, 155, '_elementor_template_type', 'wp-page'),
(1526, 155, '_elementor_version', '4.0.1'),
(1527, 155, '_elementor_pro_version', '4.0.1'),
(1528, 155, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1529, 155, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"view\":\"framed\",\"primary_color\":\"#01122657\",\"size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1323, 138, '_wp_page_template', 'elementor_header_footer'),
(1324, 138, '_elementor_edit_mode', 'builder'),
(1325, 138, '_elementor_template_type', 'wp-page'),
(1326, 138, '_elementor_version', '4.0.1'),
(1327, 138, '_elementor_pro_version', '3.25.4'),
(1328, 138, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1329, 138, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"b9a6c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1501, 153, '_wp_page_template', 'elementor_header_footer'),
(1502, 153, '_elementor_edit_mode', 'builder'),
(1503, 153, '_elementor_template_type', 'wp-page'),
(1504, 153, '_elementor_version', '4.0.1'),
(1505, 153, '_elementor_pro_version', '4.0.1'),
(1506, 153, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1507, 153, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1543, 156, '_elementor_page_settings', 'a:0:{}'),
(1544, 157, '_wp_page_template', 'elementor_header_footer'),
(1545, 157, '_elementor_edit_mode', 'builder'),
(1546, 157, '_elementor_template_type', 'wp-page'),
(1547, 157, '_elementor_version', '4.0.1'),
(1548, 157, '_elementor_pro_version', '4.0.1'),
(1549, 157, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1550, 157, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"view\":\"framed\",\"primary_color\":\"#01122657\",\"size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1395, 144, '_wp_page_template', 'elementor_header_footer'),
(1373, 142, '_wp_page_template', 'elementor_header_footer'),
(1374, 142, '_elementor_edit_mode', 'builder'),
(1375, 142, '_elementor_template_type', 'wp-page'),
(1376, 142, '_elementor_version', '4.0.1'),
(1377, 142, '_elementor_pro_version', '3.25.4'),
(1378, 142, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1379, 142, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1345, 139, '_elementor_page_settings', 'a:0:{}'),
(1348, 140, '_wp_page_template', 'elementor_header_footer'),
(1349, 140, '_elementor_edit_mode', 'builder'),
(1350, 140, '_elementor_template_type', 'wp-page'),
(1351, 140, '_elementor_version', '4.0.1'),
(1352, 140, '_elementor_pro_version', '3.25.4'),
(1353, 140, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1354, 140, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"b9a6c93\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1356, 140, '_elementor_page_settings', 'a:0:{}'),
(1520, 154, '_elementor_page_settings', 'a:0:{}'),
(1359, 141, '_wp_page_template', 'elementor_header_footer'),
(1360, 141, '_elementor_edit_mode', 'builder'),
(1361, 141, '_elementor_template_type', 'wp-page'),
(1362, 141, '_elementor_version', '4.0.1'),
(1363, 141, '_elementor_pro_version', '3.25.4'),
(1364, 141, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1365, 141, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1832, 183, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/instagram_1409946-1.svg\",\"id\":174},\"library\":\"svg\"},\"view\":\"framed\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#0000001F\",\"size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"\",\"secondary_color\":\"\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1553, 158, '_wp_page_template', 'elementor_header_footer'),
(1535, 156, '_wp_page_template', 'elementor_header_footer'),
(1536, 156, '_elementor_edit_mode', 'builder'),
(1537, 156, '_elementor_template_type', 'wp-page'),
(1538, 156, '_elementor_version', '4.0.1'),
(1539, 156, '_elementor_pro_version', '4.0.1'),
(1540, 156, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1541, 156, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"view\":\"framed\",\"primary_color\":\"#01122657\",\"size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1423, 147, '_wp_page_template', 'elementor_header_footer'),
(1424, 147, '_elementor_edit_mode', 'builder'),
(1425, 147, '_elementor_template_type', 'wp-page'),
(1426, 147, '_elementor_version', '4.0.1'),
(1427, 147, '_elementor_pro_version', '3.25.4'),
(1428, 147, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1429, 147, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1381, 142, '_elementor_page_settings', 'a:0:{}'),
(1512, 154, '_wp_page_template', 'elementor_header_footer'),
(1513, 154, '_elementor_edit_mode', 'builder'),
(1514, 154, '_elementor_template_type', 'wp-page'),
(1515, 154, '_elementor_version', '4.0.1'),
(1516, 154, '_elementor_pro_version', '4.0.1'),
(1517, 154, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1518, 154, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1384, 143, '_wp_page_template', 'elementor_header_footer'),
(1385, 143, '_elementor_edit_mode', 'builder'),
(1386, 143, '_elementor_template_type', 'wp-page'),
(1387, 143, '_elementor_version', '4.0.1'),
(1388, 143, '_elementor_pro_version', '3.25.4'),
(1389, 143, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1390, 143, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1392, 143, '_elementor_page_settings', 'a:0:{}'),
(1396, 144, '_elementor_edit_mode', 'builder'),
(1397, 144, '_elementor_template_type', 'wp-page'),
(1398, 144, '_elementor_version', '4.0.1'),
(1399, 144, '_elementor_pro_version', '3.25.4'),
(1400, 144, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1401, 144, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4438, 416, '_elementor_page_settings', 'a:0:{}'),
(4440, 417, '_elementor_edit_mode', 'builder'),
(4441, 417, '_elementor_template_type', 'wp-page'),
(4442, 417, '_elementor_version', '4.0.1'),
(4443, 417, '_elementor_pro_version', '4.0.1'),
(4444, 417, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4445, 417, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}],\"css_classes\":\"form_style\",\"custom_css\":\"\\/*.form_style .elementor-field-option a:hover{*\\/\\n\\/*    color:#0B6623;*\\/\\n\\/*    text-decoration: underline;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"<span style=\\\"font-size:13px;font-style: italic;\\\"> Includes examination and, if needed, X-rays. One-time offer for new patients booking online. Treatment not included. <a href=\\\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjM5MiIsInRvZ2dsZSI6ZmFsc2V9\\\">Terms apply.<\\/a>\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(1421, 146, '_wp_attached_file', '2026/04/Sarah-Alabdullah.jpg'),
(1422, 146, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:837;s:6:\"height\";i:867;s:4:\"file\";s:28:\"2026/04/Sarah-Alabdullah.jpg\";s:8:\"filesize\";i:59416;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Sarah-Alabdullah-290x300.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12057;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Sarah-Alabdullah-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5405;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"Sarah-Alabdullah-768x796.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:796;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53667;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1431, 147, '_elementor_page_settings', 'a:0:{}'),
(1487, 152, '_wp_page_template', 'elementor_header_footer'),
(1488, 152, '_elementor_edit_mode', 'builder'),
(1489, 152, '_elementor_template_type', 'wp-page'),
(1490, 152, '_elementor_version', '4.0.1'),
(1491, 152, '_elementor_pro_version', '3.25.4'),
(1492, 152, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1493, 152, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1443, 149, '_wp_page_template', 'elementor_header_footer'),
(1444, 149, '_elementor_edit_mode', 'builder'),
(1445, 149, '_elementor_template_type', 'wp-page'),
(1446, 149, '_elementor_version', '4.0.1'),
(1447, 149, '_elementor_pro_version', '3.25.4'),
(1448, 149, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1449, 149, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1483, 151, '_elementor_page_settings', 'a:0:{}'),
(3947, 375, '_wp_page_template', 'elementor_header_footer'),
(3925, 373, '_wp_page_template', 'elementor_header_footer'),
(3926, 373, '_elementor_edit_mode', 'builder'),
(3927, 373, '_elementor_template_type', 'wp-page'),
(3928, 373, '_elementor_version', '4.0.1'),
(3929, 373, '_elementor_pro_version', '4.0.1'),
(3930, 373, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3931, 373, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"758369f\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1433, 148, '_wp_page_template', 'elementor_header_footer'),
(1434, 148, '_elementor_edit_mode', 'builder'),
(1435, 148, '_elementor_template_type', 'wp-page'),
(1436, 148, '_elementor_version', '4.0.1'),
(1437, 148, '_elementor_pro_version', '3.25.4'),
(1438, 148, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(1439, 148, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1441, 148, '_elementor_page_settings', 'a:0:{}'),
(1476, 151, '_wp_page_template', 'elementor_header_footer'),
(1477, 151, '_elementor_edit_mode', 'builder'),
(1478, 151, '_elementor_template_type', 'wp-page'),
(1479, 151, '_elementor_version', '4.0.1'),
(1480, 151, '_elementor_pro_version', '3.25.4'),
(1481, 151, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1482, 151, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1509, 153, '_elementor_page_settings', 'a:0:{}'),
(1629, 165, '_wp_page_template', 'elementor_header_footer'),
(1630, 165, '_elementor_edit_mode', 'builder'),
(1631, 165, '_elementor_template_type', 'wp-page'),
(1632, 165, '_elementor_version', '4.0.1'),
(1633, 165, '_elementor_pro_version', '4.0.1'),
(1634, 165, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1635, 165, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"view\":\"framed\",\"size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor3\",\"secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1829, 183, '_elementor_version', '4.0.1'),
(1663, 168, '_wp_page_template', 'elementor_header_footer'),
(1664, 168, '_elementor_edit_mode', 'builder'),
(1665, 168, '_elementor_template_type', 'wp-page'),
(1666, 168, '_elementor_version', '4.0.1'),
(1667, 168, '_elementor_pro_version', '4.0.1'),
(1668, 168, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1669, 168, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"view\":\"framed\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor3\",\"secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1671, 168, '_elementor_page_settings', 'a:0:{}'),
(1672, 169, '_wp_page_template', 'elementor_header_footer'),
(1673, 169, '_elementor_edit_mode', 'builder'),
(1674, 169, '_elementor_template_type', 'wp-page'),
(1675, 169, '_elementor_version', '4.0.1'),
(1676, 169, '_elementor_pro_version', '4.0.1'),
(1677, 169, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1678, 169, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"view\":\"framed\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor3\",\"secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1637, 165, '_elementor_page_settings', 'a:0:{}'),
(1640, 166, '_wp_page_template', 'elementor_header_footer'),
(1641, 166, '_elementor_edit_mode', 'builder'),
(1642, 166, '_elementor_template_type', 'wp-page'),
(1643, 166, '_elementor_version', '4.0.1'),
(1644, 166, '_elementor_pro_version', '4.0.1'),
(1645, 166, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1646, 166, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"view\":\"framed\",\"size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor3\",\"secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1648, 166, '_elementor_page_settings', 'a:0:{}'),
(1830, 183, '_elementor_pro_version', '4.0.1'),
(1651, 167, '_wp_page_template', 'elementor_header_footer'),
(1652, 167, '_elementor_edit_mode', 'builder'),
(1653, 167, '_elementor_template_type', 'wp-page'),
(1654, 167, '_elementor_version', '4.0.1'),
(1655, 167, '_elementor_pro_version', '4.0.1'),
(1656, 167, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1657, 167, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"view\":\"framed\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor3\",\"secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4382, 410, '_elementor_page_settings', 'a:0:{}'),
(4383, 411, '_wp_page_template', 'elementor_header_footer'),
(4384, 411, '_elementor_edit_mode', 'builder'),
(4385, 411, '_elementor_template_type', 'wp-page'),
(4386, 411, '_elementor_version', '4.0.1'),
(4387, 411, '_elementor_pro_version', '4.0.1'),
(4388, 411, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4389, 411, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}],\"custom_css\":\".elementor-field-option a:hover{\\n    color:#0B6623;\\n    text-decoration: underline;\\n}\"},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"<span style=\\\"font-size:13px;font-style: italic;\\\"> Includes examination and, if needed, X-rays. One-time offer for new patients booking online. Treatment not included. <a href=\\\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjM5MiIsInRvZ2dsZSI6ZmFsc2V9\\\">Terms apply.<\\/a>\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4411, 414, '_wp_page_template', 'elementor_header_footer'),
(4393, 412, '_wp_page_template', 'elementor_header_footer'),
(4394, 412, '_elementor_edit_mode', 'builder'),
(4395, 412, '_elementor_template_type', 'wp-page'),
(4396, 412, '_elementor_version', '4.0.1'),
(4397, 412, '_elementor_pro_version', '4.0.1'),
(4398, 412, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4399, 412, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}],\"custom_css\":\".elementor-field-option a:hover{\\n    color:#0B6623;\\n    text-decoration: underline;\\n}\"},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"<span style=\\\"font-size:13px;font-style: italic;\\\"> Includes examination and, if needed, X-rays. One-time offer for new patients booking online. Treatment not included. <a href=\\\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjM5MiIsInRvZ2dsZSI6ZmFsc2V9\\\">Terms apply.<\\/a>\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4401, 412, '_elementor_page_settings', 'a:0:{}'),
(4402, 413, '_wp_page_template', 'elementor_header_footer'),
(4403, 413, '_elementor_edit_mode', 'builder'),
(4404, 413, '_elementor_template_type', 'wp-page'),
(4405, 413, '_elementor_version', '4.0.1'),
(4406, 413, '_elementor_pro_version', '4.0.1'),
(4407, 413, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4408, 413, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}],\"custom_css\":\".elementor-field-option a:hover{\\n    color:#0B6623;\\n    text-decoration: underline;\\n}\"},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"<span style=\\\"font-size:13px;font-style: italic;\\\"> Includes examination and, if needed, X-rays. One-time offer for new patients booking online. Treatment not included. <a href=\\\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjM5MiIsInRvZ2dsZSI6ZmFsc2V9\\\">Terms apply.<\\/a>\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4410, 413, '_elementor_page_settings', 'a:0:{}'),
(4412, 414, '_elementor_edit_mode', 'builder'),
(4413, 414, '_elementor_template_type', 'wp-page'),
(4414, 414, '_elementor_version', '4.0.1'),
(4415, 414, '_elementor_pro_version', '4.0.1'),
(4416, 414, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4417, 414, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}],\"css_classes\":\"form_style\",\"custom_css\":\".form_style .elementor-field-option a:hover{\\n    color:#0B6623;\\n    text-decoration: underline;\\n}\"},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"<span style=\\\"font-size:13px;font-style: italic;\\\"> Includes examination and, if needed, X-rays. One-time offer for new patients booking online. Treatment not included. <a href=\\\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjM5MiIsInRvZ2dsZSI6ZmFsc2V9\\\">Terms apply.<\\/a>\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(1680, 169, '_elementor_page_settings', 'a:0:{}'),
(1681, 170, '_wp_page_template', 'elementor_header_footer'),
(1682, 170, '_elementor_edit_mode', 'builder'),
(1683, 170, '_elementor_template_type', 'wp-page'),
(1684, 170, '_elementor_version', '4.0.1'),
(1685, 170, '_elementor_pro_version', '4.0.1'),
(1686, 170, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1687, 170, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"view\":\"framed\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor3\",\"secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1828, 183, '_elementor_template_type', 'wp-page'),
(1693, 171, '_wp_page_template', 'elementor_header_footer'),
(1694, 171, '_elementor_edit_mode', 'builder'),
(1695, 171, '_elementor_template_type', 'wp-page'),
(1696, 171, '_elementor_version', '4.0.1'),
(1697, 171, '_elementor_pro_version', '4.0.1'),
(1698, 171, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1699, 171, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"view\":\"framed\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor3\",\"secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1768, 178, '_wp_page_template', 'elementor_header_footer'),
(1826, 183, '_wp_page_template', 'elementor_header_footer'),
(1791, 180, '_elementor_edit_mode', 'builder'),
(1732, 175, '_wp_page_template', 'elementor_header_footer'),
(1733, 175, '_elementor_edit_mode', 'builder'),
(1734, 175, '_elementor_template_type', 'wp-page'),
(1735, 175, '_elementor_version', '4.0.1'),
(1736, 175, '_elementor_pro_version', '4.0.1'),
(1737, 175, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1738, 175, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"view\":\"framed\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor3\",\"secondary_color\":\"\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1846, 184, '_elementor_page_settings', 'a:0:{}'),
(1847, 185, '_wp_page_template', 'elementor_header_footer'),
(1848, 185, '_elementor_edit_mode', 'builder'),
(1849, 185, '_elementor_template_type', 'wp-page'),
(1850, 185, '_elementor_version', '4.0.1'),
(1851, 185, '_elementor_pro_version', '4.0.1'),
(1852, 185, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1853, 185, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/instagram_1409946-1.svg\",\"id\":174},\"library\":\"svg\"},\"view\":\"framed\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#0000001F\",\"size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"\",\"secondary_color\":\"\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1701, 171, '_elementor_page_settings', 'a:0:{}'),
(1704, 172, '_wp_page_template', 'elementor_header_footer'),
(1705, 172, '_elementor_edit_mode', 'builder'),
(1706, 172, '_elementor_template_type', 'wp-page'),
(1707, 172, '_elementor_version', '4.0.1'),
(1708, 172, '_elementor_pro_version', '4.0.1'),
(1709, 172, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1710, 172, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"view\":\"framed\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor3\",\"secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1712, 172, '_elementor_page_settings', 'a:0:{}'),
(1827, 183, '_elementor_edit_mode', 'builder'),
(1715, 173, '_wp_page_template', 'elementor_header_footer'),
(1716, 173, '_elementor_edit_mode', 'builder'),
(1717, 173, '_elementor_template_type', 'wp-page'),
(1718, 173, '_elementor_version', '4.0.1'),
(1719, 173, '_elementor_pro_version', '4.0.1'),
(1720, 173, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1721, 173, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"view\":\"framed\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor3\",\"secondary_color\":\"\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3983, 378, '_wp_page_template', 'elementor_header_footer'),
(3961, 376, '_wp_page_template', 'elementor_header_footer'),
(3962, 376, '_elementor_edit_mode', 'builder'),
(3963, 376, '_elementor_template_type', 'wp-page'),
(3964, 376, '_elementor_version', '4.0.1'),
(3965, 376, '_elementor_pro_version', '4.0.1'),
(3966, 376, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3967, 376, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"758369f\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4373, 409, '_elementor_page_settings', 'a:0:{}'),
(4374, 410, '_wp_page_template', 'elementor_header_footer'),
(4375, 410, '_elementor_edit_mode', 'builder'),
(4376, 410, '_elementor_template_type', 'wp-page'),
(4377, 410, '_elementor_version', '4.0.1'),
(4378, 410, '_elementor_pro_version', '4.0.1'),
(4379, 410, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4380, 410, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}],\"custom_css\":\".elementor-field-option a:hover{\\n    color:red;\\n    \\n}\"},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"<span style=\\\"font-size:13px;font-style: italic;\\\"> Includes examination and, if needed, X-rays. One-time offer for new patients booking online. Treatment not included. <a href=\\\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjM5MiIsInRvZ2dsZSI6ZmFsc2V9\\\">Terms apply.<\\/a>\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3897, 370, '_elementor_page_settings', 'a:0:{}'),
(1792, 180, '_elementor_template_type', 'wp-page'),
(1769, 178, '_elementor_edit_mode', 'builder'),
(1770, 178, '_elementor_template_type', 'wp-page'),
(1771, 178, '_elementor_version', '4.0.1'),
(1772, 178, '_elementor_pro_version', '4.0.1'),
(1773, 178, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1774, 178, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/instagram_1409946-1.svg\",\"id\":174},\"library\":\"svg\"},\"view\":\"framed\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#0000001F\",\"hover_primary_color\":\"#FFFFFF\",\"hover_secondary_color\":\"#90ee90\",\"size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"\",\"secondary_color\":\"\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1729, 174, '_wp_attached_file', '2026/04/instagram_1409946-1.svg'),
(1730, 174, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:9096;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(1740, 175, '_elementor_page_settings', 'a:0:{}'),
(1743, 176, '_wp_page_template', 'elementor_header_footer'),
(1744, 176, '_elementor_edit_mode', 'builder'),
(1745, 176, '_elementor_template_type', 'wp-page'),
(1746, 176, '_elementor_version', '4.0.1'),
(1747, 176, '_elementor_pro_version', '4.0.1'),
(1748, 176, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1749, 176, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"view\":\"framed\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor3\",\"secondary_color\":\"\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1751, 176, '_elementor_page_settings', 'a:0:{}'),
(1790, 180, '_wp_page_template', 'elementor_header_footer'),
(1754, 177, '_wp_page_template', 'elementor_header_footer'),
(1755, 177, '_elementor_edit_mode', 'builder'),
(1756, 177, '_elementor_template_type', 'wp-page'),
(1757, 177, '_elementor_version', '4.0.1'),
(1758, 177, '_elementor_pro_version', '4.0.1'),
(1759, 177, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1760, 177, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/instagram_1409946-1.svg\",\"id\":174},\"library\":\"svg\"},\"view\":\"framed\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#0000001F\",\"hover_primary_color\":\"#FFFFFF\",\"hover_secondary_color\":\"#90ee90\",\"size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"\",\"secondary_color\":\"\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3900, 371, '_wp_page_template', 'elementor_header_footer'),
(3901, 371, '_elementor_edit_mode', 'builder'),
(3902, 371, '_elementor_template_type', 'wp-page'),
(3903, 371, '_elementor_version', '4.0.1'),
(3904, 371, '_elementor_pro_version', '4.0.1'),
(3905, 371, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3906, 371, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Appointment\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact me \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3908, 371, '_elementor_page_settings', 'a:0:{}'),
(1804, 181, '_wp_page_template', 'elementor_header_footer'),
(1805, 181, '_elementor_edit_mode', 'builder'),
(1806, 181, '_elementor_template_type', 'wp-page'),
(1807, 181, '_elementor_version', '4.0.1'),
(1808, 181, '_elementor_pro_version', '4.0.1'),
(1809, 181, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1810, 181, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/instagram_1409946-1.svg\",\"id\":174},\"library\":\"svg\"},\"view\":\"framed\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#0000001F\",\"size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"\",\"secondary_color\":\"\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1776, 178, '_elementor_page_settings', 'a:0:{}'),
(1779, 179, '_wp_page_template', 'elementor_header_footer'),
(1780, 179, '_elementor_edit_mode', 'builder'),
(1781, 179, '_elementor_template_type', 'wp-page'),
(1782, 179, '_elementor_version', '4.0.1'),
(1783, 179, '_elementor_pro_version', '4.0.1'),
(1784, 179, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1785, 179, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/instagram_1409946-1.svg\",\"id\":174},\"library\":\"svg\"},\"view\":\"framed\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#0000001F\",\"hover_primary_color\":\"#FFFFFF\",\"hover_secondary_color\":\"#90ee90\",\"size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"\",\"secondary_color\":\"\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1787, 179, '_elementor_page_settings', 'a:0:{}'),
(1793, 180, '_elementor_version', '4.0.1'),
(1794, 180, '_elementor_pro_version', '4.0.1'),
(1795, 180, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1796, 180, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/instagram_1409946-1.svg\",\"id\":174},\"library\":\"svg\"},\"view\":\"framed\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#0000001F\",\"size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"\",\"secondary_color\":\"\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4049, 383, '_wp_page_template', 'elementor_header_footer'),
(4050, 383, '_elementor_edit_mode', 'builder'),
(4051, 383, '_elementor_template_type', 'wp-page'),
(4052, 383, '_elementor_version', '4.0.1'),
(4053, 383, '_elementor_pro_version', '4.0.1'),
(4054, 383, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4055, 383, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3933, 373, '_elementor_page_settings', 'a:0:{}'),
(1838, 184, '_wp_page_template', 'elementor_header_footer'),
(1839, 184, '_elementor_edit_mode', 'builder'),
(1840, 184, '_elementor_template_type', 'wp-page'),
(1841, 184, '_elementor_version', '4.0.1'),
(1842, 184, '_elementor_pro_version', '4.0.1'),
(1843, 184, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1844, 184, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/instagram_1409946-1.svg\",\"id\":174},\"library\":\"svg\"},\"view\":\"framed\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#0000001F\",\"size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"\",\"secondary_color\":\"\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1812, 181, '_elementor_page_settings', 'a:0:{}'),
(1815, 182, '_wp_page_template', 'elementor_header_footer'),
(1816, 182, '_elementor_edit_mode', 'builder'),
(1817, 182, '_elementor_template_type', 'wp-page'),
(1818, 182, '_elementor_version', '4.0.1'),
(1819, 182, '_elementor_pro_version', '4.0.1'),
(1820, 182, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1821, 182, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/instagram_1409946-1.svg\",\"id\":174},\"library\":\"svg\"},\"view\":\"framed\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#0000001F\",\"size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"\",\"secondary_color\":\"\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f77c021\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6100f72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f328d6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}]},\"elements\":[{\"id\":\"e2cd729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b359676\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f02771f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5745ec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fef7def\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1627ad2\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"133141f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0699f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6c6d00f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d763548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b6e3782\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"955caa8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"9f7c5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7bc67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32de6ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}]},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1823, 182, '_elementor_page_settings', 'a:0:{}'),
(1855, 185, '_elementor_page_settings', 'a:0:{}'),
(1857, 186, '_elementor_edit_mode', 'builder'),
(1858, 186, '_elementor_template_type', 'wp-page'),
(1859, 186, '_elementor_version', '4.0.1'),
(1860, 186, '_elementor_pro_version', '4.0.1'),
(1861, 186, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1862, 186, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/instagram_1409946-1.svg\",\"id\":174},\"library\":\"svg\"},\"view\":\"framed\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#0000001F\",\"size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"\",\"secondary_color\":\"\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1868, 187, '_wp_page_template', 'elementor_header_footer'),
(1869, 187, '_elementor_edit_mode', 'builder'),
(1870, 187, '_elementor_template_type', 'wp-page'),
(1871, 187, '_elementor_version', '4.0.1'),
(1872, 187, '_elementor_pro_version', '4.0.1'),
(1873, 187, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1874, 187, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/instagram_1409946-1.svg\",\"id\":174},\"library\":\"svg\"},\"view\":\"framed\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#0000001F\",\"size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"\",\"secondary_color\":\"\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1902, 190, '_wp_page_template', 'elementor_header_footer'),
(1903, 190, '_elementor_edit_mode', 'builder'),
(1904, 190, '_elementor_template_type', 'wp-page'),
(1905, 190, '_elementor_version', '4.0.1'),
(1906, 190, '_elementor_pro_version', '4.0.1'),
(1907, 190, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1908, 190, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#90EE9000\",\"icon_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1910, 190, '_elementor_page_settings', 'a:0:{}'),
(1911, 191, '_wp_page_template', 'elementor_header_footer'),
(1912, 191, '_elementor_edit_mode', 'builder'),
(1913, 191, '_elementor_template_type', 'wp-page'),
(1914, 191, '_elementor_version', '4.0.1'),
(1915, 191, '_elementor_pro_version', '4.0.1'),
(1916, 191, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1917, 191, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#90EE9000\",\"icon_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1876, 187, '_elementor_page_settings', 'a:0:{}'),
(1879, 188, '_wp_page_template', 'elementor_header_footer'),
(1880, 188, '_elementor_edit_mode', 'builder'),
(1881, 188, '_elementor_template_type', 'wp-page'),
(1882, 188, '_elementor_version', '4.0.1'),
(1883, 188, '_elementor_pro_version', '4.0.1'),
(1884, 188, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1885, 188, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"cdae0d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/instagram_1409946-1.svg\",\"id\":174},\"library\":\"svg\"},\"view\":\"framed\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#0000001F\",\"size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"06f0bec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"\",\"secondary_color\":\"\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1887, 188, '_elementor_page_settings', 'a:0:{}'),
(1890, 189, '_wp_page_template', 'elementor_header_footer'),
(1891, 189, '_elementor_edit_mode', 'builder'),
(1892, 189, '_elementor_template_type', 'wp-page'),
(1893, 189, '_elementor_version', '4.0.1'),
(1894, 189, '_elementor_pro_version', '4.0.1'),
(1895, 189, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1896, 189, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#90EE9000\",\"icon_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3936, 374, '_wp_page_template', 'elementor_header_footer'),
(3937, 374, '_elementor_edit_mode', 'builder'),
(3938, 374, '_elementor_template_type', 'wp-page'),
(3939, 374, '_elementor_version', '4.0.1'),
(3940, 374, '_elementor_pro_version', '4.0.1'),
(3941, 374, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3942, 374, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"758369f\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1919, 191, '_elementor_page_settings', 'a:0:{}'),
(1920, 192, '_wp_page_template', 'elementor_header_footer'),
(1921, 192, '_elementor_edit_mode', 'builder'),
(1922, 192, '_elementor_template_type', 'wp-page'),
(1923, 192, '_elementor_version', '4.0.1'),
(1924, 192, '_elementor_pro_version', '4.0.1'),
(1925, 192, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1926, 192, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#90EE9000\",\"icon_secondary_color\":\"#756E6E9C\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"\",\"icon_secondary_color\":\"\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1932, 193, '_wp_page_template', 'elementor_header_footer'),
(1933, 193, '_elementor_edit_mode', 'builder'),
(1934, 193, '_elementor_template_type', 'wp-page'),
(1935, 193, '_elementor_version', '4.0.1'),
(1936, 193, '_elementor_pro_version', '4.0.1'),
(1937, 193, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1938, 193, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#90EE9000\",\"icon_secondary_color\":\"#756E6E9C\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"\",\"icon_secondary_color\":\"\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1968, 196, '_wp_page_template', 'elementor_header_footer'),
(1969, 196, '_elementor_edit_mode', 'builder'),
(1970, 196, '_elementor_template_type', 'wp-page'),
(1971, 196, '_elementor_version', '4.0.1'),
(1972, 196, '_elementor_pro_version', '4.0.1'),
(1973, 196, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1974, 196, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#90EE9000\",\"icon_secondary_color\":\"#756E6E9C\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"\",\"icon_secondary_color\":\"\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2112, 208, '_wp_page_template', 'elementor_header_footer'),
(2184, 214, '_wp_page_template', 'elementor_header_footer'),
(2185, 214, '_elementor_edit_mode', 'builder'),
(2262, 220, '_elementor_page_settings', 'a:0:{}'),
(2263, 221, '_wp_page_template', 'elementor_header_footer'),
(2264, 221, '_elementor_edit_mode', 'builder'),
(2265, 221, '_elementor_template_type', 'wp-page'),
(2266, 221, '_elementor_version', '4.0.1'),
(2267, 221, '_elementor_pro_version', '4.0.1'),
(2268, 221, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2269, 221, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1940, 193, '_elementor_page_settings', 'a:0:{}'),
(1943, 194, '_wp_page_template', 'elementor_header_footer'),
(1944, 194, '_elementor_edit_mode', 'builder'),
(1945, 194, '_elementor_template_type', 'wp-page'),
(1946, 194, '_elementor_version', '4.0.1'),
(1947, 194, '_elementor_pro_version', '4.0.1'),
(1948, 194, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1949, 194, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#90EE9000\",\"icon_secondary_color\":\"#756E6E9C\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"\",\"icon_secondary_color\":\"\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1951, 194, '_elementor_page_settings', 'a:0:{}'),
(1954, 195, '_wp_page_template', 'elementor_header_footer'),
(1955, 195, '_elementor_edit_mode', 'builder'),
(1956, 195, '_elementor_template_type', 'wp-page'),
(1957, 195, '_elementor_version', '4.0.1'),
(1958, 195, '_elementor_pro_version', '4.0.1'),
(1959, 195, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1960, 195, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#90EE9000\",\"icon_secondary_color\":\"#756E6E9C\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"\",\"icon_secondary_color\":\"\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3944, 374, '_elementor_page_settings', 'a:0:{}'),
(2004, 199, '_wp_page_template', 'elementor_header_footer'),
(2005, 199, '_elementor_edit_mode', 'builder'),
(2006, 199, '_elementor_template_type', 'wp-page'),
(2007, 199, '_elementor_version', '4.0.1'),
(2008, 199, '_elementor_pro_version', '4.0.1'),
(2009, 199, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2010, 199, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#90EE9000\",\"icon_secondary_color\":\"#756E6E9C\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"\",\"icon_secondary_color\":\"\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1976, 196, '_elementor_page_settings', 'a:0:{}'),
(1979, 197, '_wp_page_template', 'elementor_header_footer'),
(1980, 197, '_elementor_edit_mode', 'builder'),
(1981, 197, '_elementor_template_type', 'wp-page'),
(1982, 197, '_elementor_version', '4.0.1'),
(1983, 197, '_elementor_pro_version', '4.0.1'),
(1984, 197, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1985, 197, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#90EE9000\",\"icon_secondary_color\":\"#756E6E9C\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"\",\"icon_secondary_color\":\"\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1987, 197, '_elementor_page_settings', 'a:0:{}'),
(1990, 198, '_wp_page_template', 'elementor_header_footer'),
(1991, 198, '_elementor_edit_mode', 'builder'),
(1992, 198, '_elementor_template_type', 'wp-page'),
(1993, 198, '_elementor_version', '4.0.1'),
(1994, 198, '_elementor_pro_version', '4.0.1'),
(1995, 198, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1996, 198, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#90EE9000\",\"icon_secondary_color\":\"#756E6E9C\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"\",\"icon_secondary_color\":\"\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2062, 204, '_wp_page_template', 'elementor_header_footer'),
(2040, 202, '_wp_page_template', 'elementor_header_footer'),
(2041, 202, '_elementor_edit_mode', 'builder'),
(2042, 202, '_elementor_template_type', 'wp-page'),
(2043, 202, '_elementor_version', '4.0.1'),
(2044, 202, '_elementor_pro_version', '4.0.1'),
(2045, 202, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2046, 202, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#90EE9000\",\"icon_secondary_color\":\"#756E6E9C\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"\",\"icon_secondary_color\":\"\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2012, 199, '_elementor_page_settings', 'a:0:{}'),
(2015, 200, '_wp_page_template', 'elementor_header_footer'),
(2016, 200, '_elementor_edit_mode', 'builder'),
(2017, 200, '_elementor_template_type', 'wp-page'),
(2018, 200, '_elementor_version', '4.0.1'),
(2019, 200, '_elementor_pro_version', '4.0.1'),
(2020, 200, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2021, 200, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#90EE9000\",\"icon_secondary_color\":\"#756E6E9C\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"\",\"icon_secondary_color\":\"\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}]},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2023, 200, '_elementor_page_settings', 'a:0:{}'),
(2026, 201, '_wp_page_template', 'elementor_header_footer'),
(2027, 201, '_elementor_edit_mode', 'builder'),
(2028, 201, '_elementor_template_type', 'wp-page'),
(2029, 201, '_elementor_version', '4.0.1'),
(2030, 201, '_elementor_pro_version', '4.0.1'),
(2031, 201, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2032, 201, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#90EE9000\",\"icon_secondary_color\":\"#756E6E9C\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"\",\"icon_secondary_color\":\"\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3948, 375, '_elementor_edit_mode', 'builder'),
(3949, 375, '_elementor_template_type', 'wp-page'),
(3950, 375, '_elementor_version', '4.0.1'),
(3951, 375, '_elementor_pro_version', '4.0.1'),
(3952, 375, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3953, 375, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"758369f\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2134, 210, '_wp_page_template', 'elementor_header_footer'),
(2076, 205, '_wp_page_template', 'elementor_header_footer'),
(2077, 205, '_elementor_edit_mode', 'builder'),
(2078, 205, '_elementor_template_type', 'wp-page'),
(2079, 205, '_elementor_version', '4.0.1'),
(2080, 205, '_elementor_pro_version', '4.0.1');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2081, 205, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(2082, 205, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#90EE9000\",\"icon_secondary_color\":\"#756E6E9C\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"\",\"icon_secondary_color\":\"\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2220, 217, '_wp_page_template', 'elementor_header_footer'),
(2048, 202, '_elementor_page_settings', 'a:0:{}'),
(2051, 203, '_wp_page_template', 'elementor_header_footer'),
(2052, 203, '_elementor_edit_mode', 'builder'),
(2053, 203, '_elementor_template_type', 'wp-page'),
(2054, 203, '_elementor_version', '4.0.1'),
(2055, 203, '_elementor_pro_version', '4.0.1'),
(2056, 203, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2057, 203, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#90EE9000\",\"icon_secondary_color\":\"#756E6E9C\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"\",\"icon_secondary_color\":\"\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2059, 203, '_elementor_page_settings', 'a:0:{}'),
(2063, 204, '_elementor_edit_mode', 'builder'),
(2064, 204, '_elementor_template_type', 'wp-page'),
(2065, 204, '_elementor_version', '4.0.1'),
(2066, 204, '_elementor_pro_version', '4.0.1'),
(2067, 204, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2068, 204, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#90EE9000\",\"icon_secondary_color\":\"#756E6E9C\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"\",\"icon_secondary_color\":\"\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2135, 210, '_elementor_edit_mode', 'builder'),
(2113, 208, '_elementor_edit_mode', 'builder'),
(2114, 208, '_elementor_template_type', 'wp-page'),
(2115, 208, '_elementor_version', '4.0.1'),
(2116, 208, '_elementor_pro_version', '4.0.1'),
(2117, 208, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2118, 208, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#90EE9000\",\"icon_secondary_color\":\"#756E6E9C\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"\",\"icon_secondary_color\":\"\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2084, 205, '_elementor_page_settings', 'a:0:{}'),
(2087, 206, '_wp_page_template', 'elementor_header_footer'),
(2088, 206, '_elementor_edit_mode', 'builder'),
(2089, 206, '_elementor_template_type', 'wp-page'),
(2090, 206, '_elementor_version', '4.0.1'),
(2091, 206, '_elementor_pro_version', '4.0.1'),
(2092, 206, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2093, 206, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#90EE9000\",\"icon_secondary_color\":\"#756E6E9C\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"\",\"icon_secondary_color\":\"\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2095, 206, '_elementor_page_settings', 'a:0:{}'),
(2098, 207, '_wp_page_template', 'elementor_header_footer'),
(2099, 207, '_elementor_edit_mode', 'builder'),
(2100, 207, '_elementor_template_type', 'wp-page'),
(2101, 207, '_elementor_version', '4.0.1'),
(2102, 207, '_elementor_pro_version', '4.0.1'),
(2103, 207, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2104, 207, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#90EE9000\",\"icon_secondary_color\":\"#756E6E9C\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"\",\"icon_secondary_color\":\"\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2148, 211, '_wp_page_template', 'elementor_header_footer'),
(2149, 211, '_elementor_edit_mode', 'builder'),
(2150, 211, '_elementor_template_type', 'wp-page'),
(2151, 211, '_elementor_version', '4.0.1'),
(2152, 211, '_elementor_pro_version', '4.0.1'),
(2153, 211, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2154, 211, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#90EE9000\",\"icon_secondary_color\":\"#756E6E9C\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"\",\"icon_secondary_color\":\"\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2221, 217, '_elementor_edit_mode', 'builder'),
(2222, 217, '_elementor_template_type', 'wp-page'),
(2120, 208, '_elementor_page_settings', 'a:0:{}'),
(2123, 209, '_wp_page_template', 'elementor_header_footer'),
(2124, 209, '_elementor_edit_mode', 'builder'),
(2125, 209, '_elementor_template_type', 'wp-page'),
(2126, 209, '_elementor_version', '4.0.1'),
(2127, 209, '_elementor_pro_version', '4.0.1'),
(2128, 209, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2129, 209, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#90EE9000\",\"icon_secondary_color\":\"#756E6E9C\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"\",\"icon_secondary_color\":\"\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2131, 209, '_elementor_page_settings', 'a:0:{}'),
(2136, 210, '_elementor_template_type', 'wp-page'),
(2137, 210, '_elementor_version', '4.0.1'),
(2138, 210, '_elementor_pro_version', '4.0.1'),
(2139, 210, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2140, 210, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#90EE9000\",\"icon_secondary_color\":\"#756E6E9C\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"\",\"icon_secondary_color\":\"\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2186, 214, '_elementor_template_type', 'wp-page'),
(2187, 214, '_elementor_version', '4.0.1'),
(2188, 214, '_elementor_pro_version', '4.0.1'),
(2189, 214, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2190, 214, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2156, 211, '_elementor_page_settings', 'a:0:{}'),
(2159, 212, '_wp_page_template', 'elementor_header_footer'),
(2160, 212, '_elementor_edit_mode', 'builder'),
(2161, 212, '_elementor_template_type', 'wp-page'),
(2162, 212, '_elementor_version', '4.0.1'),
(2163, 212, '_elementor_pro_version', '4.0.1'),
(2164, 212, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2165, 212, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#90EE9000\",\"icon_secondary_color\":\"#756E6E9C\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"\",\"icon_secondary_color\":\"\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2167, 212, '_elementor_page_settings', 'a:0:{}'),
(2170, 213, '_wp_page_template', 'elementor_header_footer'),
(2171, 213, '_elementor_edit_mode', 'builder'),
(2172, 213, '_elementor_template_type', 'wp-page'),
(2173, 213, '_elementor_version', '4.0.1'),
(2174, 213, '_elementor_pro_version', '4.0.1'),
(2175, 213, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2176, 213, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4353, 408, '_wp_page_template', 'elementor_header_footer'),
(4331, 406, '_wp_page_template', 'elementor_header_footer'),
(4332, 406, '_elementor_edit_mode', 'builder'),
(4333, 406, '_elementor_template_type', 'wp-page'),
(4334, 406, '_elementor_version', '4.0.1'),
(4335, 406, '_elementor_pro_version', '4.0.1'),
(4336, 406, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4337, 406, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"758369f\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3969, 376, '_elementor_page_settings', 'a:0:{}'),
(2223, 217, '_elementor_version', '4.0.1'),
(2224, 217, '_elementor_pro_version', '4.0.1');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2225, 217, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(2226, 217, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2192, 214, '_elementor_page_settings', 'a:0:{}'),
(2195, 215, '_wp_page_template', 'elementor_header_footer'),
(2196, 215, '_elementor_edit_mode', 'builder'),
(2197, 215, '_elementor_template_type', 'wp-page'),
(2198, 215, '_elementor_version', '4.0.1'),
(2199, 215, '_elementor_pro_version', '4.0.1'),
(2200, 215, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2201, 215, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2203, 215, '_elementor_page_settings', 'a:0:{}'),
(2206, 216, '_wp_page_template', 'elementor_header_footer'),
(2207, 216, '_elementor_edit_mode', 'builder'),
(2208, 216, '_elementor_template_type', 'wp-page'),
(2209, 216, '_elementor_version', '4.0.1'),
(2210, 216, '_elementor_pro_version', '4.0.1'),
(2211, 216, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2212, 216, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2254, 220, '_wp_page_template', 'elementor_header_footer'),
(2255, 220, '_elementor_edit_mode', 'builder'),
(2256, 220, '_elementor_template_type', 'wp-page'),
(2257, 220, '_elementor_version', '4.0.1'),
(2258, 220, '_elementor_pro_version', '4.0.1'),
(2259, 220, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2260, 220, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2228, 217, '_elementor_page_settings', 'a:0:{}'),
(2231, 218, '_wp_page_template', 'elementor_header_footer'),
(2232, 218, '_elementor_edit_mode', 'builder'),
(2233, 218, '_elementor_template_type', 'wp-page'),
(2234, 218, '_elementor_version', '4.0.1'),
(2235, 218, '_elementor_pro_version', '4.0.1'),
(2236, 218, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2237, 218, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2239, 218, '_elementor_page_settings', 'a:0:{}'),
(2242, 219, '_wp_page_template', 'elementor_header_footer'),
(2243, 219, '_elementor_edit_mode', 'builder'),
(2244, 219, '_elementor_template_type', 'wp-page'),
(2245, 219, '_elementor_version', '4.0.1'),
(2246, 219, '_elementor_pro_version', '4.0.1'),
(2247, 219, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2248, 219, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h6\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2271, 221, '_elementor_page_settings', 'a:0:{}'),
(2272, 222, '_wp_page_template', 'elementor_header_footer'),
(2273, 222, '_elementor_edit_mode', 'builder'),
(2274, 222, '_elementor_template_type', 'wp-page'),
(2275, 222, '_elementor_version', '4.0.1'),
(2276, 222, '_elementor_pro_version', '4.0.1'),
(2277, 222, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2278, 222, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2284, 223, '_wp_page_template', 'elementor_header_footer'),
(2285, 223, '_elementor_edit_mode', 'builder'),
(2286, 223, '_elementor_template_type', 'wp-page'),
(2287, 223, '_elementor_version', '4.0.1'),
(2288, 223, '_elementor_pro_version', '4.0.1'),
(2289, 223, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2290, 223, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2329, 229, '_wp_page_template', 'elementor_header_footer'),
(2330, 229, '_elementor_edit_mode', 'builder'),
(2331, 229, '_elementor_template_type', 'wp-page'),
(2332, 229, '_elementor_version', '4.0.1'),
(2333, 229, '_elementor_pro_version', '4.0.1'),
(2334, 229, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2335, 229, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4354, 408, '_elementor_edit_mode', 'builder'),
(4355, 408, '_elementor_template_type', 'wp-page'),
(4356, 408, '_elementor_version', '4.0.1'),
(4357, 408, '_elementor_pro_version', '4.0.1'),
(4358, 408, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4359, 408, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"758369f\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2292, 223, '_elementor_page_settings', 'a:0:{}'),
(2295, 224, '_wp_page_template', 'elementor_header_footer'),
(2296, 224, '_elementor_edit_mode', 'builder'),
(2297, 224, '_elementor_template_type', 'wp-page'),
(2298, 224, '_elementor_version', '4.0.1'),
(2299, 224, '_elementor_pro_version', '4.0.1'),
(2300, 224, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2301, 224, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2303, 224, '_elementor_page_settings', 'a:0:{}'),
(2306, 225, '_wp_page_template', 'elementor_header_footer'),
(2307, 225, '_elementor_edit_mode', 'builder'),
(2308, 225, '_elementor_template_type', 'wp-page'),
(2309, 225, '_elementor_version', '4.0.1'),
(2310, 225, '_elementor_pro_version', '4.0.1'),
(2311, 225, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2312, 225, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3972, 377, '_wp_page_template', 'elementor_header_footer'),
(3973, 377, '_elementor_edit_mode', 'builder'),
(3974, 377, '_elementor_template_type', 'wp-page'),
(3975, 377, '_elementor_version', '4.0.1'),
(3976, 377, '_elementor_pro_version', '4.0.1'),
(3977, 377, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3978, 377, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"758369f\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3980, 377, '_elementor_page_settings', 'a:0:{}'),
(2383, 238, '_wp_page_template', 'elementor_header_footer'),
(2384, 238, '_elementor_edit_mode', 'builder'),
(2385, 238, '_elementor_template_type', 'wp-page'),
(2386, 238, '_elementor_version', '4.0.1'),
(2387, 238, '_elementor_pro_version', '4.0.1'),
(2388, 238, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2389, 238, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2320, 226, '_wp_attached_file', '2026/04/dental-crown_8946301.svg'),
(2321, 226, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2810;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(2323, 227, '_wp_attached_file', '2026/04/veneers_12488995.svg'),
(2324, 227, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2611;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(2326, 228, '_wp_attached_file', '2026/04/mold_2398547.svg'),
(2327, 228, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2447;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(2337, 229, '_elementor_page_settings', 'a:0:{}'),
(2340, 230, '_wp_page_template', 'elementor_header_footer'),
(2341, 230, '_elementor_edit_mode', 'builder'),
(2342, 230, '_elementor_template_type', 'wp-page'),
(2343, 230, '_elementor_version', '4.0.1'),
(2344, 230, '_elementor_pro_version', '4.0.1'),
(2345, 230, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2346, 230, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2348, 230, '_elementor_page_settings', 'a:0:{}'),
(2351, 231, '_wp_page_template', 'elementor_header_footer'),
(2352, 231, '_elementor_edit_mode', 'builder'),
(2353, 231, '_elementor_template_type', 'wp-page'),
(2354, 231, '_elementor_version', '4.0.1'),
(2355, 231, '_elementor_pro_version', '4.0.1'),
(2356, 231, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2357, 231, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2431, 242, '_wp_page_template', 'elementor_header_footer'),
(2432, 242, '_elementor_edit_mode', 'builder'),
(2433, 242, '_elementor_template_type', 'wp-page'),
(2434, 242, '_elementor_version', '4.0.1'),
(2435, 242, '_elementor_pro_version', '4.0.1'),
(2436, 242, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2437, 242, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13497292.svg\",\"id\":237},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2512, 252, '_wp_page_template', 'elementor_header_footer'),
(2513, 252, '_elementor_edit_mode', 'builder'),
(2514, 252, '_elementor_template_type', 'wp-page'),
(2515, 252, '_elementor_version', '4.0.1'),
(2516, 252, '_elementor_pro_version', '4.0.1'),
(2517, 252, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2518, 252, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13497292.svg\",\"id\":237},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2365, 232, '_wp_attached_file', '2026/04/teeth_17541147.svg'),
(2366, 232, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3602;s:5:\"width\";i:64;s:6:\"height\";i:64;}'),
(2368, 233, '_wp_attached_file', '2026/04/bridge_6200449.svg'),
(2369, 233, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3535;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(2371, 234, '_wp_attached_file', '2026/04/malocclusion_12489207.svg'),
(2372, 234, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:4685;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(2374, 235, '_wp_attached_file', '2026/04/syringe_5285617.svg'),
(2375, 235, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3962;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(2377, 236, '_wp_attached_file', '2026/04/smile_13635121.svg'),
(2378, 236, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1984;s:5:\"width\";i:96;s:6:\"height\";i:96;}'),
(2380, 237, '_wp_attached_file', '2026/04/smile_13497292.svg'),
(2381, 237, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3425;s:5:\"width\";i:100;s:6:\"height\";i:100;}'),
(2391, 238, '_elementor_page_settings', 'a:0:{}'),
(2394, 239, '_wp_page_template', 'elementor_header_footer'),
(2395, 239, '_elementor_edit_mode', 'builder'),
(2396, 239, '_elementor_template_type', 'wp-page'),
(2397, 239, '_elementor_version', '4.0.1'),
(2398, 239, '_elementor_pro_version', '4.0.1'),
(2399, 239, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2400, 239, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2402, 239, '_elementor_page_settings', 'a:0:{}'),
(2451, 244, '_wp_page_template', 'elementor_header_footer'),
(2405, 240, '_wp_page_template', 'elementor_header_footer'),
(2406, 240, '_elementor_edit_mode', 'builder'),
(2407, 240, '_elementor_template_type', 'wp-page'),
(2408, 240, '_elementor_version', '4.0.1'),
(2409, 240, '_elementor_pro_version', '4.0.1'),
(2410, 240, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2411, 240, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13497292.svg\",\"id\":237},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3984, 378, '_elementor_edit_mode', 'builder'),
(3985, 378, '_elementor_template_type', 'wp-page'),
(3986, 378, '_elementor_version', '4.0.1'),
(3987, 378, '_elementor_pro_version', '4.0.1'),
(3988, 378, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3989, 378, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"758369f\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2464, 245, '_wp_page_template', 'elementor_header_footer'),
(2465, 245, '_elementor_edit_mode', 'builder'),
(2466, 245, '_elementor_template_type', 'wp-page'),
(2467, 245, '_elementor_version', '4.0.1'),
(2468, 245, '_elementor_pro_version', '4.0.1'),
(2469, 245, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2470, 245, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13497292.svg\",\"id\":237},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2455, 244, '_elementor_pro_version', '4.0.1'),
(2456, 244, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2457, 244, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13497292.svg\",\"id\":237},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2452, 244, '_elementor_edit_mode', 'builder'),
(2453, 244, '_elementor_template_type', 'wp-page'),
(2454, 244, '_elementor_version', '4.0.1'),
(2439, 242, '_elementor_page_settings', 'a:0:{}'),
(2441, 243, '_wp_page_template', 'elementor_header_footer'),
(2442, 243, '_elementor_edit_mode', 'builder'),
(2443, 243, '_elementor_template_type', 'wp-page'),
(2444, 243, '_elementor_version', '4.0.1'),
(2445, 243, '_elementor_pro_version', '4.0.1'),
(2446, 243, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2447, 243, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13497292.svg\",\"id\":237},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2449, 243, '_elementor_page_settings', 'a:0:{}'),
(2472, 245, '_elementor_page_settings', 'a:0:{}'),
(2475, 246, '_wp_page_template', 'elementor_header_footer'),
(2476, 246, '_elementor_edit_mode', 'builder'),
(2477, 246, '_elementor_template_type', 'wp-page'),
(2478, 246, '_elementor_version', '4.0.1'),
(2479, 246, '_elementor_pro_version', '4.0.1'),
(2480, 246, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2481, 246, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13497292.svg\",\"id\":237},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2483, 246, '_elementor_page_settings', 'a:0:{}'),
(2486, 247, '_wp_page_template', 'elementor_header_footer'),
(2487, 247, '_elementor_edit_mode', 'builder'),
(2488, 247, '_elementor_template_type', 'wp-page'),
(2489, 247, '_elementor_version', '4.0.1'),
(2490, 247, '_elementor_pro_version', '4.0.1'),
(2491, 247, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2492, 247, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13497292.svg\",\"id\":237},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2548, 255, '_wp_page_template', 'elementor_header_footer'),
(2549, 255, '_elementor_edit_mode', 'builder'),
(2550, 255, '_elementor_template_type', 'wp-page'),
(2551, 255, '_elementor_version', '4.0.1'),
(2552, 255, '_elementor_pro_version', '4.0.1'),
(2553, 255, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2554, 255, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2500, 248, '_wp_attached_file', '2026/04/dental-care_2581605.svg'),
(2501, 248, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3164;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(2503, 249, '_wp_attached_file', '2026/04/braces_7335250.svg'),
(2504, 249, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:21058;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(4776, 45, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:3:{i:0;s:16:\"widget-icon-list\";i:1;s:12:\"widget-image\";i:2;s:23:\"widget-pp-advanced-menu\";}s:7:\"scripts\";a:4:{i:0;s:18:\"elementor-frontend\";i:1;s:16:\"jquery-smartmenu\";i:2;s:21:\"pp-smartmenu-keyboard\";i:3;s:16:\"pp-advanced-menu\";}}'),
(4777, 262, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:4:{i:0;s:14:\"widget-heading\";i:1;s:16:\"widget-icon-list\";i:2;s:19:\"widget-social-icons\";i:3;s:14:\"e-apple-webkit\";}s:7:\"scripts\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),
(4778, 392, '_elementor_page_assets', 'a:2:{s:7:\"scripts\";a:1:{i:0;s:18:\"elementor-frontend\";}s:6:\"styles\";a:1:{i:0;s:7:\"e-popup\";}}'),
(4779, 6, '_elementor_css', 'a:6:{s:4:\"time\";i:1775571319;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:11:\"Roboto Slab\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(4780, 45, '_elementor_css', 'a:6:{s:4:\"time\";i:1775571319;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:10:\"fa-regular\";i:1;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(4781, 262, '_elementor_css', 'a:6:{s:4:\"time\";i:1775571319;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:4:{i:0;s:8:\"fa-solid\";i:3;s:9:\"fa-brands\";i:5;s:10:\"fa-regular\";i:10;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:1:{i:0;s:7:\"2ae9de3\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(4782, 392, '_elementor_css', 'a:6:{s:4:\"time\";i:1775571319;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(4783, 45, '_elementor_element_cache', '{\"timeout\":1775657719,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-5dc2a09 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"5dc2a09\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-8e6943e elementor-align-center elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\\\" data-id=\\\"8e6943e\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/mrarif.me\\/drsarah\\/book-appointment\\/\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-far-calendar-alt\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Book your complimentary consultation<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-d3ae750 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"d3ae750\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-3bc14cb e-con-full e-flex e-con e-child\\\" data-id=\\\"3bc14cb\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-6382518 elementor-widget elementor-widget-image\\\" data-id=\\\"6382518\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/mrarif.me\\/drsarah\\/\\\">\\n\\t\\t\\t\\t\\t\\t\\t<img width=\\\"462\\\" height=\\\"540\\\" src=\\\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/logo-15.png\\\" class=\\\"attachment-full size-full wp-image-47\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/logo-15.png 462w, https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/logo-15-257x300.png 257w\\\" sizes=\\\"(max-width: 462px) 100vw, 462px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-754dc3d e-con-full e-flex e-con e-child\\\" data-id=\\\"754dc3d\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t[elementor-element k=\\\"937d0284354f58395b38c355c9dc209e\\\" data=\\\"eyJpZCI6ImQ5ODMwZWYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJhbGlnbl9pdGVtcyI6InJpZ2h0IiwibWVudV90eXBlIjoib2ZmLWNhbnZhcyIsInRvZ2dsZV9sYWJlbCI6Ik1lbnUiLCJ0b2dnbGVfYWxpZ24iOiJyaWdodCIsInBhZGRpbmdfaG9yaXpvbnRhbF9tZW51X2l0ZW0iOnsidW5pdCI6InB4Iiwic2l6ZSI6MCwic2l6ZXMiOltdfSwicGFkZGluZ192ZXJ0aWNhbF9tZW51X2l0ZW0iOnsidW5pdCI6InB4Iiwic2l6ZSI6MSwic2l6ZXMiOltdfSwibWVudV9zcGFjZV9iZXR3ZWVuIjp7InVuaXQiOiJweCIsInNpemUiOjMxLCJzaXplcyI6W119LCJwb2ludGVyX3dpZHRoIjp7InVuaXQiOiJweCIsInNpemUiOjEsInNpemVzIjpbXX0sInRvZ2dsZV9iYWNrZ3JvdW5kX2NvbG9yIjoiI0JGNTE1MTAwIiwibWVudV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJtZW51X3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldF9leHRyYSI6eyJ1bml0IjoicHgiLCJzaXplIjoxNywic2l6ZXMiOltdfSwibWVudV90eXBvZ3JhcGh5X2ZvbnRfd2VpZ2h0IjoiNTAwIiwiZHJvcGRvd25fdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiZHJvcGRvd25fdHlwb2dyYXBoeV9mb250X3dlaWdodCI6IjYwMCIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiNGI4ZDI0NyJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50IiwiX19nbG9iYWxzX18iOnsiY29sb3JfbWVudV9pdGVtIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yMiIsImNvbG9yX21lbnVfaXRlbV9ob3ZlciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjAiLCJjb2xvcl9tZW51X2l0ZW1fYWN0aXZlIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yMCIsInBvaW50ZXJfY29sb3JfbWVudV9pdGVtX2hvdmVyIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yMCIsInBvaW50ZXJfY29sb3JfbWVudV9pdGVtX2FjdGl2ZSI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjAiLCJvdmVybGF5X2JnX2NvbG9yIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yNCIsIm1vYmlsZV9saW5rX2NvbG9yIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yMiIsImNsb3NlX2ljb25fY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IwIiwibW9iaWxlX2xpbmtfYmdfaG92ZXIiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IwIiwibW9iaWxlX2xpbmtfaG92ZXIiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I0IiwidG9nZ2xlX2NvbG9yIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yMSJ9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoicHAtYWR2YW5jZWQtbWVudSJ9\\\"]\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4784, 262, '_elementor_element_cache', '{\"timeout\":1775657719,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-050d7a7 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"050d7a7\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-c549993 e-con-full e-flex e-con e-child\\\" data-id=\\\"c549993\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-48f713c elementor-widget elementor-widget-heading\\\" data-id=\\\"48f713c\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"elementor-heading-title elementor-size-default\\\">Quick link<\\/h6>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-d558958 elementor-list-item-link-inline elementor-icon-list--layout-traditional elementor-widget elementor-widget-icon-list\\\" data-id=\\\"d558958\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/mrarif.me\\/drsarah\\/\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Home<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/mrarif.me\\/drsarah\\/contact-me\\/\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Contact Me<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/mrarif.me\\/drsarah\\/refer-a-patient\\/\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Refer a Patient<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-c2a7436 e-grid-align-left elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons\\\" data-id=\\\"c2a7436\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"social-icons.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-social-icons-wrapper elementor-grid\\\">\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t<a class=\\\"elementor-icon elementor-social-icon elementor-social-icon-instagram elementor-repeater-item-60cd419\\\" href=\\\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-screen-only\\\">Instagram<\\/span>\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fab-instagram\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-ef97d44 e-con-full e-flex e-con e-child\\\" data-id=\\\"ef97d44\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-4cb5137 elementor-widget elementor-widget-heading\\\" data-id=\\\"4cb5137\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"elementor-heading-title elementor-size-default\\\">BC Perio Vancouver<\\/h6>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-ca34a69 elementor-list-item-link-inline elementor-icon-list--layout-traditional elementor-widget elementor-widget-icon-list\\\" data-id=\\\"ca34a69\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/&#039;&#039;\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\\\" target=\\\"_blank\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-map-marker-alt\\\" viewBox=\\\"0 0 384 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">#501-777 West Broadway Vancouver, BC V5Z 4J7<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"mailto:info@bcperio.ca\\\" target=\\\"_blank\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-far-envelope\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">info@bcperio.ca<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"tel:6048720222\\\" target=\\\"_blank\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-phone-alt\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">(604) 872-0222<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-68bada8 e-con-full e-flex e-con e-child\\\" data-id=\\\"68bada8\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-9bcc785 elementor-widget elementor-widget-heading\\\" data-id=\\\"9bcc785\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"elementor-heading-title elementor-size-default\\\">BC Perio Coquitlam<\\/h6>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-cbf23c1 elementor-list-item-link-inline elementor-icon-list--layout-traditional elementor-widget elementor-widget-icon-list\\\" data-id=\\\"cbf23c1\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/&#039;&#039;\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\\\" target=\\\"_blank\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-map-marker-alt\\\" viewBox=\\\"0 0 384 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"mailto:info2@bcperio.ca\\\" target=\\\"_blank\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-far-envelope\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">info2@bcperio.ca<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"tel:6049368244\\\" target=\\\"_blank\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-phone-alt\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">(604) 936-8244<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"937d0284354f58395b38c355c9dc209e\\\" data=\\\"eyJpZCI6IjJhZTlkZTMiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0ZXh0IjoiQ2xpY2sgaGVyZSIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiY2VkYjdhMSJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50IiwiaGlkZV93aWRlc2NyZWVuIjoiaGlkZGVuLXdpZGVzY3JlZW4iLCJoaWRlX2Rlc2t0b3AiOiJoaWRkZW4tZGVza3RvcCIsImhpZGVfdGFibGV0X2V4dHJhIjoiaGlkZGVuLXRhYmxldF9leHRyYSIsImhpZGVfdGFibGV0IjoiaGlkZGVuLXRhYmxldCIsImhpZGVfbW9iaWxlX2V4dHJhIjoiaGlkZGVuLW1vYmlsZV9leHRyYSIsImhpZGVfbW9iaWxlIjoiaGlkZGVuLW1vYmlsZSIsIl9fZHluYW1pY19fIjp7ImxpbmsiOiJbZWxlbWVudG9yLXRhZyBpZD1cImE0YTQ2NWZcIiBuYW1lPVwicG9wdXBcIiBzZXR0aW5ncz1cIiU3QiUyMnBvcHVwJTIyJTNBJTIyMzkyJTIyJTdEXCJdIn19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJidXR0b24ifQ==\\\"]\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-25fd49f e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"25fd49f\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-54d74df elementor-widget elementor-widget-heading\\\" data-id=\\\"54d74df\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<p class=\\\"elementor-heading-title elementor-size-default\\\">\\u00a9 2026. All rights reserved.<\\/p>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}'),
(2506, 250, '_wp_attached_file', '2026/04/dental-bridge_18038707.svg'),
(2507, 250, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:5450;s:5:\"width\";i:64;s:6:\"height\";i:64;}'),
(4629, 433, '_elementor_edit_mode', 'builder'),
(4630, 433, '_elementor_template_type', 'header'),
(4786, 10, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:9:{i:0;s:12:\"widget-image\";i:1;s:14:\"widget-heading\";i:2;s:24:\"widget-animated-headline\";i:3;s:19:\"widget-social-icons\";i:4;s:14:\"e-apple-webkit\";i:5;s:22:\"e-animation-fadeInLeft\";i:6;s:23:\"e-animation-fadeInRight\";i:7;s:18:\"widget-pp-info-box\";i:8;s:20:\"e-animation-fadeInUp\";}s:7:\"scripts\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),
(4787, 10, '_elementor_css', 'a:6:{s:4:\"time\";i:1775571807;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:9:\"fa-brands\";i:1;s:8:\"fa-solid\";i:2;s:3:\"svg\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(4788, 226, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>'),
(4785, 392, '_elementor_element_cache', '{\"timeout\":1775657719,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-fc82c6f e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"fc82c6f\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t[elementor-element k=\\\"937d0284354f58395b38c355c9dc209e\\\" data=\\\"eyJpZCI6ImI2Y2RkNjUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiJUaGlzIG9mZmVyIGluY2x1ZGVzIGEgY29tcHJlaGVuc2l2ZSBkZW50YWwgZXhhbWluYXRpb24gYW5kLCBpZiBjbGluaWNhbGx5IG5lY2Vzc2FyeSwgYXBwcm9wcmlhdGUgcmFkaW9ncmFwaHMuIEl0IGlzIGF2YWlsYWJsZSBleGNsdXNpdmVseSBmb3IgbmV3IHBhdGllbnRzIHdobyBib29rIHRocm91Z2ggb3VyIHdlYnNpdGUgYW5kIGlzIGxpbWl0ZWQgdG8gb25lIGNvbnN1bHRhdGlvbiBwZXIgcGF0aWVudC4gV2UgcmVzZXJ2ZSB0aGUgcmlnaHQgdG8gZGV0ZXJtaW5lIGVsaWdpYmlsaXR5LCB0aGUgc2NvcGUgb2Ygc2VydmljZXMgcHJvdmlkZWQsIGFuZCBjYXNlIGFjY2VwdGFuY2UgYmFzZWQgb24gY2xpbmljYWwganVkZ21lbnQuIEFkZGl0aW9uYWwgZGlhZ25vc3RpYyB0ZXN0cyBvciB0cmVhdG1lbnQsIGlmIHJlcXVpcmVkLCBhcmUgbm90IGluY2x1ZGVkLiBUaGlzIG9mZmVyIGRvZXMgbm90IGluY2x1ZGUgYW55IHRyZWF0bWVudCBmZWVzLiIsImFsaWduIjoiY2VudGVyIiwidHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjoyOCwic2l6ZXMiOltdfSwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiJlOWVjYWFkIn1dLCJwcF9lbGVtZW50c190b29sdGlwX2NvbnRlbnQiOiJUb29sdGlwIENvbnRlbnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoidGV4dC1lZGl0b3IifQ==\\\"]\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}'),
(2509, 251, '_wp_attached_file', '2026/04/bridge_13935535.svg'),
(2510, 251, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:5275;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(4631, 433, '_elementor_version', '4.0.1'),
(4632, 433, '_elementor_pro_version', '4.0.1'),
(4633, 433, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4634, 433, '_wp_page_template', 'default'),
(4635, 433, '_elementor_data', '[{\"id\":\"5dc2a09\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9304530\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db274d5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e488ed\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"49a6def\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8e6943e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Book your complimentary consultation\",\"selected_icon\":{\"value\":\"far fa-calendar-alt\",\"library\":\"fa-regular\"},\"_id\":\"057ff9d\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"90f2d1d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_typography_typography\":\"custom\",\"icon_typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d3ae750\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fc10808\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4f9b77b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f12d87c\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#08203E14\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"876574e\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"3bc14cb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2061631\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88932f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"26ff0e8\"}],\"pp_display_conditions\":[{\"_id\":\"86b987c\"}]},\"elements\":[{\"id\":\"6382518\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/logo-15.png\",\"id\":47,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"1e840e0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"754dc3d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d4ffd9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"be2a022\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5bd3673\"}],\"pp_display_conditions\":[{\"_id\":\"0aa1f89\"}]},\"elements\":[{\"id\":\"d9830ef\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_background_color\":\"#BF515100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4b8d247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true}],\"isInner\":false}]'),
(2520, 252, '_elementor_page_settings', 'a:0:{}'),
(2523, 253, '_wp_page_template', 'elementor_header_footer'),
(2524, 253, '_elementor_edit_mode', 'builder'),
(2525, 253, '_elementor_template_type', 'wp-page'),
(2526, 253, '_elementor_version', '4.0.1'),
(2527, 253, '_elementor_pro_version', '4.0.1'),
(2528, 253, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2529, 253, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13497292.svg\",\"id\":237},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2531, 253, '_elementor_page_settings', 'a:0:{}'),
(2534, 254, '_wp_page_template', 'elementor_header_footer'),
(2535, 254, '_elementor_edit_mode', 'builder'),
(2536, 254, '_elementor_template_type', 'wp-page'),
(2537, 254, '_elementor_version', '4.0.1'),
(2538, 254, '_elementor_pro_version', '4.0.1'),
(2539, 254, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2540, 254, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4620, 432, '_elementor_version', '4.0.1'),
(4565, 427, '_wp_page_template', 'elementor_header_footer'),
(4566, 427, '_elementor_edit_mode', 'builder'),
(4567, 427, '_elementor_template_type', 'wp-page'),
(4568, 427, '_elementor_version', '4.0.1'),
(4569, 427, '_elementor_pro_version', '4.0.1'),
(4570, 427, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4571, 427, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"758369f\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4004, 379, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4005, 379, '_elementor_screenshot', 'a:2:{s:2:\"id\";i:261;s:3:\"url\";s:128:\"https://mrarif.me/drsarah/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_45_2026-04-05-10-28-04_5ea50b3d.png\";}'),
(4021, 380, '_elementor_page_settings', 'a:0:{}'),
(4024, 381, '_wp_page_template', 'elementor_header_footer'),
(4025, 381, '_elementor_edit_mode', 'builder'),
(4026, 381, '_elementor_template_type', 'wp-page'),
(4027, 381, '_elementor_version', '4.0.1'),
(4028, 381, '_elementor_pro_version', '4.0.1'),
(4029, 381, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4030, 381, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Appointment\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact me \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4032, 381, '_elementor_page_settings', 'a:0:{}'),
(4036, 382, '_elementor_edit_mode', 'builder'),
(4037, 382, '_elementor_template_type', 'wp-page'),
(4038, 382, '_elementor_version', '4.0.1'),
(4039, 382, '_elementor_pro_version', '4.0.1'),
(4040, 382, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4041, 382, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2606, 260, '_wp_page_template', 'elementor_header_footer'),
(2584, 258, '_wp_page_template', 'elementor_header_footer'),
(2585, 258, '_elementor_edit_mode', 'builder'),
(2586, 258, '_elementor_template_type', 'wp-page'),
(2587, 258, '_elementor_version', '4.0.1'),
(2588, 258, '_elementor_pro_version', '4.0.1'),
(2589, 258, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2590, 258, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"115da5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5575eb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"39f99fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58f02ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d6f9cf\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2858, 283, '_wp_page_template', 'elementor_header_footer'),
(2859, 283, '_elementor_edit_mode', 'builder'),
(2860, 283, '_elementor_template_type', 'wp-page'),
(2861, 283, '_elementor_version', '4.0.1'),
(2556, 255, '_elementor_page_settings', 'a:0:{}'),
(2559, 256, '_wp_page_template', 'elementor_header_footer'),
(2560, 256, '_elementor_edit_mode', 'builder'),
(2561, 256, '_elementor_template_type', 'wp-page'),
(2562, 256, '_elementor_version', '4.0.1'),
(2563, 256, '_elementor_pro_version', '4.0.1'),
(2564, 256, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2565, 256, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2567, 256, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4800, 10, '_elementor_element_cache', '{\"timeout\":1775658207,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-3c973a7 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"3c973a7\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-92c6737 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"92c6737\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInLeft&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-b7d7ce2 elementor-widget elementor-widget-image\\\" data-id=\\\"b7d7ce2\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"837\\\" height=\\\"867\\\" src=\\\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\\\" class=\\\"attachment-full size-full wp-image-146\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg 837w, https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah-290x300.jpg 290w, https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah-768x796.jpg 768w\\\" sizes=\\\"(max-width: 837px) 100vw, 837px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-382c447 elementor-widget elementor-widget-heading\\\" data-id=\\\"382c447\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h5 class=\\\"elementor-heading-title elementor-size-default\\\">Dr. Sarah Alabdullah<\\/h5>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-9342ac0 elementor-headline--style-rotate elementor-widget elementor-widget-animated-headline\\\" data-id=\\\"9342ac0\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-settings=\\\"{&quot;headline_style&quot;:&quot;rotate&quot;,&quot;rotating_text&quot;:&quot;Prosthodontics&quot;,&quot;animation_type&quot;:&quot;typing&quot;,&quot;loop&quot;:&quot;yes&quot;,&quot;rotate_iteration_delay&quot;:2500}\\\" data-widget_type=\\\"animated-headline.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<h3 class=\\\"elementor-headline elementor-headline-animation-type-typing elementor-headline-letters\\\">\\n\\t\\t\\t\\t\\t<span class=\\\"elementor-headline-plain-text elementor-headline-text-wrapper\\\">Certified Specialist in<\\/span>\\n\\t\\t\\t\\t<span class=\\\"elementor-headline-dynamic-wrapper elementor-headline-text-wrapper\\\">\\n\\t\\t\\t\\t\\t<span class=\\\"elementor-headline-dynamic-text elementor-headline-text-active\\\">\\n\\t\\t\\t\\tProsthodontics\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-36f464a elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons\\\" data-id=\\\"36f464a\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"social-icons.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-social-icons-wrapper elementor-grid\\\">\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t<a class=\\\"elementor-icon elementor-social-icon elementor-social-icon-instagram elementor-repeater-item-60cd419\\\" href=\\\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-screen-only\\\">Instagram<\\/span>\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fab-instagram\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-90840de e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"90840de\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInRight&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-bc93c81 elementor-widget elementor-widget-heading\\\" data-id=\\\"bc93c81\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h1 class=\\\"elementor-heading-title elementor-size-default\\\">Dr. Sarah Alabdullah<\\/h1>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-5ac5ead elementor-widget elementor-widget-heading\\\" data-id=\\\"5ac5ead\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"elementor-heading-title elementor-size-default\\\">Certified Specialist in Prosthodontics<\\/h6>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"937d0284354f58395b38c355c9dc209e\\\" data=\\\"eyJpZCI6IjdkYWI2NzMiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiI8cD5Eci4gU2FyYWggQWxhYmR1bGxhaCBpcyBhIENlcnRpZmllZCBTcGVjaWFsaXN0IGluIFByb3N0aG9kb250aWNzIHdpdGggb3ZlciBhIGRlY2FkZSBvZiBjbGluaWNhbCBleHBlcmllbmNlLCBwcmFjdGljaW5nIGRlbnRpc3RyeSBzaW5jZSAyMDEzLiBTaGUgaXMgYSBGZWxsb3cgb2YgdGhlIFJveWFsIENvbGxlZ2Ugb2YgRGVudGlzdHMgb2YgQ2FuYWRhIGFuZCBjb21wbGV0ZWQgaGVyIE1hc3Rlclx1MjAxOXMgZGVncmVlIGFuZCBzcGVjaWFsdHkgdHJhaW5pbmcgaW4gcHJvc3Rob2RvbnRpY3MgYXQgdGhlIFVuaXZlcnNpdHkgb2YgQnJpdGlzaCBDb2x1bWJpYSBpbiAyMDIwLiBTaGUgY3VycmVudGx5IHByYWN0aWNlcyBpbiBWYW5jb3V2ZXIgYW5kIENvcXVpdGxhbSwgQnJpdGlzaCBDb2x1bWJpYS48XC9wPjxwPkRyLiBBbGFiZHVsbGFoXHUyMDE5cyBjbGluaWNhbCBwcmFjdGljZSBmb2N1c2VzIG9uIHRoZSBkaWFnbm9zaXMgYW5kIG1hbmFnZW1lbnQgb2YgY29tcGxleCByZWhhYmlsaXRhdGl2ZSBkZW50YWwgY2FzZXMuIEhlciBleHBlcnRpc2UgaW5jbHVkZXMgaW1wbGFudCByZXN0b3JhdGlvbnMsIGltcGxhbnQtc3VwcG9ydGVkIGh5YnJpZCBwcm9zdGhlc2VzLCBjcm93bnMgYW5kIGJyaWRnZXMsIGZ1bGwtbW91dGggcmVoYWJpbGl0YXRpb24sIGFuZCBib3RoIGNvbXBsZXRlIGFuZCByZW1vdmFibGUgZGVudHVyZXMuIFNoZSBoYXMgZXh0ZW5zaXZlIGV4cGVyaWVuY2UgaW4gYm90aCB0b290aC0gYW5kIGltcGxhbnQtc3VwcG9ydGVkIHByb3N0aGVzZXMgYW5kIGluY29ycG9yYXRlcyBhZHZhbmNlZCBkaWdpdGFsIGRlbnRpc3RyeSBhbG9uZyB3aXRoIG1vZGVybiBwYWluLW1hbmFnZW1lbnQgdGVjaG5pcXVlcyB0byBkZWxpdmVyIHByZWRpY3RhYmxlLCBwYXRpZW50LWNlbnRlcmVkIG91dGNvbWVzIHdpdGggbWluaW1hbCBkaXNjb21mb3J0LjxiciBcLz48YnIgXC8+T3V0c2lkZSBvZiBkZW50aXN0cnksIERyLiBBbGFiZHVsbGFoIGVuam95cyBjb29raW5nLCBzd2ltbWluZywgYW5kIHRyYXZlbGluZy4gU2hlIHZhbHVlcyBzcGVuZGluZyBxdWFsaXR5IHRpbWUgd2l0aCBoZXIgZmFtaWx5IGFuZCBleHBsb3JpbmcgdGhlIG5hdHVyYWwgYmVhdXR5IG9mIEJyaXRpc2ggQ29sdW1iaWEuPFwvcD4iLCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6IjgxY2M4NTIifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0ZXh0LWVkaXRvciJ9\\\"]\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-84452c4 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"84452c4\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-f680a2b e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"f680a2b\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-e6773e8 elementor-widget elementor-widget-heading\\\" data-id=\\\"e6773e8\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">My work<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-8191122 elementor-widget elementor-widget-heading\\\" data-id=\\\"8191122\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"elementor-heading-title elementor-size-default\\\">follow me on instagram<\\/h6>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-cf78e26 elementor-grid-4 elementor-grid-mobile_extra-1 elementor-grid-tablet-2 elementor-grid-mobile-1 pp-info-box-above-title elementor-widget elementor-widget-pp-info-box-carousel\\\" data-id=\\\"cf78e26\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"pp-info-box-carousel.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-container elementor-grid\\\">\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-icon-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"pp-info-box-icon pp-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img src=\\\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\\\" alt=\\\"my work (5)\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-content\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-wrap\\\">\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-icon-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"pp-info-box-icon pp-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img src=\\\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\\\" alt=\\\"my work (7)\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-content\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-wrap\\\">\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-icon-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"pp-info-box-icon pp-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img src=\\\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\\\" alt=\\\"my work (2)\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-content\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-wrap\\\">\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-icon-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"pp-info-box-icon pp-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img src=\\\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\\\" alt=\\\"my work (3)\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-content\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-wrap\\\">\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-icon-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"pp-info-box-icon pp-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img src=\\\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\\\" alt=\\\"my work (4)\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-content\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-wrap\\\">\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-icon-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"pp-info-box-icon pp-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img src=\\\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\\\" alt=\\\"my work (1)\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-content\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-wrap\\\">\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-icon-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"pp-info-box-icon pp-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img src=\\\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\\\" alt=\\\"my work (6)\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-content\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-wrap\\\">\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-icon-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"pp-info-box-icon pp-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img src=\\\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\\\" alt=\\\"my work\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-content\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-wrap\\\">\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-471088f service_style e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"471088f\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-dadcd1c e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"dadcd1c\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-ed0f03d elementor-widget elementor-widget-heading\\\" data-id=\\\"ed0f03d\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">My Services <\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-7e48578 elementor-widget elementor-widget-heading\\\" data-id=\\\"7e48578\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h4 class=\\\"elementor-heading-title elementor-size-default\\\">Fixed Prosthesis<\\/h4>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-0c1802c elementor-grid-5 elementor-grid-tablet-2 elementor-grid-mobile-1 pp-info-box-above-title elementor-widget elementor-widget-pp-info-box-carousel\\\" data-id=\\\"0c1802c\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-settings=\\\"{&quot;equal_height_boxes&quot;:&quot;yes&quot;}\\\" data-widget_type=\\\"pp-info-box-carousel.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-container elementor-grid pp-info-box-equal-height\\\">\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-icon-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"pp-info-box-icon pp-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" clip-rule=\\\"evenodd\\\" fill-rule=\\\"evenodd\\\" height=\\\"512\\\" image-rendering=\\\"optimizeQuality\\\" shape-rendering=\\\"geometricPrecision\\\" text-rendering=\\\"geometricPrecision\\\" viewBox=\\\"0 0 1707 1707\\\" width=\\\"512\\\"><g id=\\\"Layer_x0020_1\\\"><g id=\\\"_177341960\\\"><g><g id=\\\"_177341576\\\"><path d=\\\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\\\"><\\/path><\\/g><g id=\\\"_177341696\\\"><path d=\\\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\\\"><\\/path><\\/g><g><g id=\\\"_177341624\\\"><path d=\\\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\\\"><\\/path><\\/g><g id=\\\"_177341912\\\"><path d=\\\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\\\"><\\/path><\\/g><\\/g><g id=\\\"_177342008\\\"><path d=\\\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\\\"><\\/path><\\/g><g id=\\\"_177341864\\\"><path d=\\\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\\\"><\\/path><\\/g><\\/g><\\/g><\\/g><\\/svg>\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-content\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-container\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"pp-info-box-title\\\">\\n\\t\\t\\t\\t\\t\\tCrowns\\t\\t\\t\\t\\t<\\/h6>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-icon-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"pp-info-box-icon pp-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"Layer_1\\\" height=\\\"512\\\" viewBox=\\\"0 0 512 512\\\" width=\\\"512\\\"><path d=\\\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-content\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-container\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"pp-info-box-title\\\">\\n\\t\\t\\t\\t\\t\\tVeneers\\t\\t\\t\\t\\t<\\/h6>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-icon-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"pp-info-box-icon pp-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"Line\\\" viewBox=\\\"0 0 64 64\\\"><path d=\\\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-content\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-container\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"pp-info-box-title\\\">\\n\\t\\t\\t\\t\\t\\tBridges\\t\\t\\t\\t\\t<\\/h6>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-icon-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"pp-info-box-icon pp-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"Layer_1\\\" viewBox=\\\"0 0 64 64\\\" data-name=\\\"Layer 1\\\"><path d=\\\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\\\"><\\/path><path d=\\\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-content\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-container\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"pp-info-box-title\\\">\\n\\t\\t\\t\\t\\t\\tImplant crowns\\t\\t\\t\\t\\t<\\/h6>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-icon-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"pp-info-box-icon pp-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" viewBox=\\\"0 0 64 64\\\" width=\\\"512\\\" height=\\\"512\\\"><g id=\\\"Outline\\\"><g id=\\\"Outline-2\\\" data-name=\\\"Outline\\\"><path d=\\\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\\\"><\\/path><path d=\\\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\\\"><\\/path><circle cx=\\\"32\\\" cy=\\\"25\\\" r=\\\"1\\\"><\\/circle><path d=\\\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\\\"><\\/path><\\/g><\\/g><\\/svg>\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-content\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-container\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"pp-info-box-title\\\">\\n\\t\\t\\t\\t\\t\\tImplant bridge\\t\\t\\t\\t\\t<\\/h6>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-icon-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"pp-info-box-icon pp-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"Layer_1\\\" height=\\\"512\\\" viewBox=\\\"0 0 512 512\\\" width=\\\"512\\\"><path d=\\\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-content\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-container\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"pp-info-box-title\\\">\\n\\t\\t\\t\\t\\t\\tImplant all-on-X\\t\\t\\t\\t\\t<\\/h6>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-icon-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"pp-info-box-icon pp-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"_x33_0\\\" height=\\\"512\\\" viewBox=\\\"0 0 63.091 62\\\" width=\\\"512\\\"><path d=\\\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-content\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-container\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"pp-info-box-title\\\">\\n\\t\\t\\t\\t\\t\\tFull mouth rehabilitation\\t\\t\\t\\t\\t<\\/h6>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-icon-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"pp-info-box-icon pp-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" viewBox=\\\"0 0 96 96\\\"><g id=\\\"Snile\\\"><path d=\\\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\\\"><\\/path><path d=\\\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\\\"><\\/path><path d=\\\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\\\"><\\/path><path d=\\\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\\\"><\\/path><path d=\\\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\\\"><\\/path><path d=\\\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\\\"><\\/path><\\/g><\\/svg>\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-content\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-container\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"pp-info-box-title\\\">\\n\\t\\t\\t\\t\\t\\tSmile makeover\\t\\t\\t\\t\\t<\\/h6>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-icon-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"pp-info-box-icon pp-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" viewBox=\\\"0 0 512 512\\\" width=\\\"512\\\" height=\\\"512\\\"><g id=\\\"SOLID\\\"><path d=\\\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\\\"><\\/path><path d=\\\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\\\"><\\/path><path d=\\\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\\\"><\\/path><path d=\\\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\\\"><\\/path><path d=\\\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\\\"><\\/path><path d=\\\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\\\"><\\/path><path d=\\\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\\\"><\\/path><path d=\\\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\\\"><\\/path><path d=\\\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\\\"><\\/path><path d=\\\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\\\"><\\/path><path d=\\\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\\\"><\\/path><path d=\\\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\\\"><\\/path><path d=\\\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\\\"><\\/path><path d=\\\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\\\"><\\/path><path d=\\\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\\\"><\\/path><path d=\\\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\\\"><\\/path><path d=\\\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\\\"><\\/path><path d=\\\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\\\"><\\/path><path d=\\\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\\\"><\\/path><\\/g><\\/svg>\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-content\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-container\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"pp-info-box-title\\\">\\n\\t\\t\\t\\t\\t\\tHollywood smile\\t\\t\\t\\t\\t<\\/h6>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-720b61c elementor-widget elementor-widget-heading\\\" data-id=\\\"720b61c\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h4 class=\\\"elementor-heading-title elementor-size-default\\\">Removable Prosthesis<\\/h4>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-4e2eccc elementor-grid-3 elementor-grid-tablet-2 elementor-grid-mobile-1 pp-info-box-above-title elementor-widget elementor-widget-pp-info-box-carousel\\\" data-id=\\\"4e2eccc\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-settings=\\\"{&quot;equal_height_boxes&quot;:&quot;yes&quot;}\\\" data-widget_type=\\\"pp-info-box-carousel.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-container elementor-grid pp-info-box-equal-height\\\">\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-icon-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"pp-info-box-icon pp-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"Layer_1\\\" height=\\\"512\\\" viewBox=\\\"0 0 106 106\\\" width=\\\"512\\\"><g><path d=\\\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\\\"><\\/path><path d=\\\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\\\"><\\/path><path d=\\\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\\\"><\\/path><path d=\\\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\\\"><\\/path><path d=\\\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\\\"><\\/path><path d=\\\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\\\"><\\/path><path d=\\\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\\\"><\\/path><path d=\\\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\\\"><\\/path><path d=\\\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\\\"><\\/path><path d=\\\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\\\"><\\/path><path d=\\\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\\\"><\\/path><path d=\\\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\\\"><\\/path><path d=\\\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\\\"><\\/path><path d=\\\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\\\"><\\/path><path d=\\\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\\\"><\\/path><path d=\\\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\\\"><\\/path><path d=\\\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\\\"><\\/path><path d=\\\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\\\"><\\/path><path d=\\\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\\\"><\\/path><path d=\\\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\\\"><\\/path><path d=\\\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\\\"><\\/path><path d=\\\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\\\"><\\/path><path d=\\\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\\\"><\\/path><path d=\\\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\\\"><\\/path><path d=\\\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\\\"><\\/path><path d=\\\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\\\"><\\/path><path d=\\\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\\\"><\\/path><path d=\\\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\\\"><\\/path><path d=\\\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\\\"><\\/path><path d=\\\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\\\"><\\/path><path d=\\\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\\\"><\\/path><path d=\\\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\\\"><\\/path><path d=\\\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\\\"><\\/path><path d=\\\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\\\"><\\/path><path d=\\\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\\\"><\\/path><path d=\\\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\\\"><\\/path><path d=\\\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\\\"><\\/path><path d=\\\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\\\"><\\/path><path d=\\\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\\\"><\\/path><path d=\\\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\\\"><\\/path><path d=\\\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\\\"><\\/path><path d=\\\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\\\"><\\/path><path d=\\\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\\\"><\\/path><path d=\\\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\\\"><\\/path><path d=\\\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\\\"><\\/path><path d=\\\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\\\"><\\/path><path d=\\\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\\\"><\\/path><path d=\\\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\\\"><\\/path><path d=\\\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\\\"><\\/path><path d=\\\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\\\"><\\/path><path d=\\\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\\\"><\\/path><path d=\\\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\\\"><\\/path><path d=\\\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\\\"><\\/path><path d=\\\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\\\"><\\/path><path d=\\\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\\\"><\\/path><path d=\\\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\\\"><\\/path><path d=\\\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\\\"><\\/path><path d=\\\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\\\"><\\/path><path d=\\\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\\\"><\\/path><path d=\\\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\\\"><\\/path><path d=\\\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\\\"><\\/path><path d=\\\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\\\"><\\/path><path d=\\\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\\\"><\\/path><path d=\\\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\\\"><\\/path><path d=\\\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\\\"><\\/path><path d=\\\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\\\"><\\/path><path d=\\\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\\\"><\\/path><path d=\\\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\\\"><\\/path><path d=\\\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\\\"><\\/path><path d=\\\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\\\"><\\/path><path d=\\\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\\\"><\\/path><path d=\\\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\\\"><\\/path><path d=\\\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\\\"><\\/path><\\/g><\\/svg>\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-content\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-container\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"pp-info-box-title\\\">\\n\\t\\t\\t\\t\\t\\tComplete dentures\\t\\t\\t\\t\\t<\\/h6>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-icon-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"pp-info-box-icon pp-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"Layer_3\\\" height=\\\"512\\\" viewBox=\\\"0 0 64 64\\\" width=\\\"512\\\"><path d=\\\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-content\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-container\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"pp-info-box-title\\\">\\n\\t\\t\\t\\t\\t\\tRemovable partial denture\\t\\t\\t\\t\\t<\\/h6>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-icon-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"pp-info-box-icon pp-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" data-name=\\\"Layer 1\\\" id=\\\"Layer_1\\\" viewBox=\\\"0 0 128 128\\\"><title><\\/title><path d=\\\"M21.32153,69.56442a23.37174,23.37174,0,0,0-9.24.09,4.44636,4.44636,0,0,0-3.48,3.76,49.235,49.235,0,0,0,.11,13.34,4.46823,4.46823,0,0,0,2.52991,3.37,13.40178,13.40178,0,0,0,8.13013,1.17,1.41747,1.41747,0,0,1-.04-.2,60.35016,60.35016,0,0,1-.15-16.39014A10.80932,10.80932,0,0,1,21.32153,69.56442Z\\\"><\\/path><path d=\\\"M66.28467,76.58529a55.58765,55.58765,0,0,0,.16064,15.33588,4.97633,4.97633,0,0,0,2.75,3.67188,14.58249,14.58249,0,0,0,13.05457-.0506A5.05254,5.05254,0,0,0,85.123,91.71865a55.69556,55.69556,0,0,0,.12878-15.13336,5.04,5.04,0,0,0-3.95459-4.26447,26.6315,26.6315,0,0,0-11.058,0A5.0398,5.0398,0,0,0,66.28467,76.58529Z\\\"><\\/path><path d=\\\"M25.13574,75.50631a54.01893,54.01893,0,0,0,.1499,14.86987,4.82949,4.82949,0,0,0,2.66,3.56006,13.72507,13.72507,0,0,0,8.68005,1.24,6.01527,6.01527,0,0,0,4.92993-5.91071V76.85281a5.95076,5.95076,0,0,0-5.4469-5.97784,25.939,25.939,0,0,0-7.123.49127A4.92716,4.92716,0,0,0,25.13574,75.50631Z\\\"><\\/path><path d=\\\"M90.3916,95.04446a14.41659,14.41659,0,0,0,9.56995-1.15,4.89591,4.89591,0,0,0,2.77991-3.71008,53.76773,53.76773,0,0,0,.13013-14.66992,4.89423,4.89423,0,0,0-3.83008-4.14,25.78941,25.78941,0,0,0-9.59-.21,10.95734,10.95734,0,0,1,1.75,4.61,62.20134,62.20134,0,0,1-.15,16.86A10.7274,10.7274,0,0,1,90.3916,95.04446Z\\\"><\\/path><path d=\\\"M108.67151,91.10452a1.28692,1.28692,0,0,1-.03992.18994,13.40091,13.40091,0,0,0,8.12988-1.17,4.49037,4.49037,0,0,0,2.53-3.37,49.23988,49.23988,0,0,0,.11011-13.34,4.44666,4.44666,0,0,0-3.48-3.76,23.3724,23.3724,0,0,0-9.24011-.09,10.80932,10.80932,0,0,1,2.14,5.14A60.4323,60.4323,0,0,1,108.67151,91.10452Z\\\"><\\/path><path d=\\\"M126.42456,98.2a42.34688,42.34688,0,0,0-2.88354-5.416,10.92132,10.92132,0,0,1-4.05029,3.23389,20.68914,20.68914,0,0,1-8.65234,1.96973,18.69958,18.69958,0,0,1-4.7373-.615,11.38535,11.38535,0,0,1-3.4209,2.42554,22.01776,22.01776,0,0,1-9.22852,2.10547,20.10376,20.10376,0,0,1-7.01025-1.28479,11.53128,11.53128,0,0,1-1.4751.82874,22.42428,22.42428,0,0,1-9.417,2.15625,20.88279,20.88279,0,0,1-9.19629-2.165l-.001-.001A11.54485,11.54485,0,0,1,64.001,99.91531a11.54666,11.54666,0,0,1-2.35107,1.52246l-.001.001a20.8787,20.8787,0,0,1-9.19531,2.165,22.44613,22.44613,0,0,1-9.4209-2.15723,11.5312,11.5312,0,0,1-1.47266-.82739,20.11541,20.11541,0,0,1-7.01074,1.28442,21.998,21.998,0,0,1-9.22314-2.10352,11.39616,11.39616,0,0,1-3.42456-2.42773,18.70785,18.70785,0,0,1-4.74341.61621,20.61324,20.61324,0,0,1-8.62744-1.96191,10.97713,10.97713,0,0,1-4.07007-3.24512A42.33219,42.33219,0,0,0,1.57544,98.2a6.68961,6.68961,0,0,0,5.604,9.36768,40.95427,40.95427,0,0,1,14.45288,3.50513c8.61462,4.13489,22.35864,8.67139,35.49939,5.50061a29.22367,29.22367,0,0,1,13.73657,0c13.14075,3.17078,26.88489-1.36572,35.49939-5.50061a40.95489,40.95489,0,0,1,14.45288-3.50513A6.68961,6.68961,0,0,0,126.42456,98.2Z\\\"><\\/path><path d=\\\"M39.53845,43.34554a3.02093,3.02093,0,0,0,2.7428,1.70978H64.119a3.02078,3.02078,0,0,0,2.74451-1.71307c.07227-.15466.14209-.31152.209-.469a15.2541,15.2541,0,0,0,1.17212-6.37488c-.08-3.0575-.74036-7.3988-3.72852-8.51172a10.45,10.45,0,0,0-6.81177-.1344,15.28619,15.28619,0,0,1-9.00464,0,10.44927,10.44927,0,0,0-6.81152.1344c-2.98547,1.11182-3.6499,5.44592-3.73267,8.50293a15.21331,15.21331,0,0,0,1.17725,6.39661C39.39868,43.04043,39.46729,43.19406,39.53845,43.34554Zm8.306-10.9115a1.37717,1.37717,0,0,1,1.72876-.91638,12.34805,12.34805,0,0,0,7.25757,0,1.38359,1.38359,0,1,1,.8125,2.6452,15.14388,15.14388,0,0,1-8.88257,0A1.38224,1.38224,0,0,1,47.84448,32.434Z\\\"><\\/path><path d=\\\"M61.5542,53.95834a2.26541,2.26541,0,1,0,0-4.53082H44.84546a2.26541,2.26541,0,0,0,0,4.53082h3.74585v3.37213l-1.31323.23151a1.88822,1.88822,0,0,0-1.59326,1.91772,1.8288,1.8288,0,0,0,2.14868,1.70593l.75781-.13361v2.44531l-1.31323.23157a1.8882,1.8882,0,0,0-1.59326,1.91766A1.82847,1.82847,0,0,0,47.8335,67.3525l.75781-.13361v1.36377a2.4434,2.4434,0,0,0,.61646,1.62244l3.08057,3.46954a1.22161,1.22161,0,0,0,1.82715,0l3.08069-3.46954a2.44329,2.44329,0,0,0,.61633-1.62244V65.5931l1.291-.2276a1.90024,1.90024,0,0,0,1.60059-2.04224,1.83181,1.83181,0,0,0-2.13794-1.58459l-.75366.13287V59.42623l1.291-.22766a1.90012,1.90012,0,0,0,1.60034-2.0434,1.83247,1.83247,0,0,0-2.1377-1.58344l-.75366.13287V53.95834Z\\\"><\\/path><path d=\\\"M88.46362,53.21761a2,2,0,0,0,2.95764,0L102.89551,40.6152a2,2,0,0,0-1.47888-3.34644H95.69238V16.11288a5.75,5.75,0,0,0-11.5,0V37.26876H78.46814a2,2,0,0,0-1.47888,3.34644Z\\\"><\\/path><path d=\\\"M15.52112,53.21761a2,2,0,0,0,2.95764,0L29.95313,40.6152a2,2,0,0,0-1.479-3.34644H22.75V16.11288a5.75,5.75,0,0,0-11.5,0V37.26876H5.52563A2,2,0,0,0,4.04688,40.6152Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-content\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-info-box-title-container\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"pp-info-box-title\\\">\\n\\t\\t\\t\\t\\t\\tImplant retained complete or partial overdenture\\t\\t\\t\\t\\t<\\/h6>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3852, 366, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3853, 366, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"758369f\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2570, 257, '_wp_page_template', 'elementor_header_footer'),
(2571, 257, '_elementor_edit_mode', 'builder'),
(2572, 257, '_elementor_template_type', 'wp-page'),
(2573, 257, '_elementor_version', '4.0.1'),
(2574, 257, '_elementor_pro_version', '4.0.1'),
(2575, 257, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2576, 257, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"115da5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5575eb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"39f99fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58f02ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d6f9cf\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4107, 388, '_wp_page_template', 'elementor_header_footer'),
(4085, 386, '_wp_page_template', 'elementor_header_footer'),
(4086, 386, '_elementor_edit_mode', 'builder'),
(4087, 386, '_elementor_template_type', 'wp-page'),
(4088, 386, '_elementor_version', '4.0.1'),
(4089, 386, '_elementor_pro_version', '4.0.1'),
(4090, 386, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4091, 386, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"Includes examination and, if needed, X-rays. One-time offer for new patients booking online. Treatment not included. Terms apply.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4057, 383, '_elementor_page_settings', 'a:0:{}'),
(4060, 384, '_wp_page_template', 'elementor_header_footer'),
(4061, 384, '_elementor_edit_mode', 'builder'),
(4062, 384, '_elementor_template_type', 'wp-page'),
(4063, 384, '_elementor_version', '4.0.1'),
(4064, 384, '_elementor_pro_version', '4.0.1'),
(4065, 384, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4066, 384, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4068, 384, '_elementor_page_settings', 'a:0:{}'),
(4071, 385, '_wp_page_template', 'elementor_header_footer'),
(4072, 385, '_elementor_edit_mode', 'builder'),
(4073, 385, '_elementor_template_type', 'wp-page'),
(4074, 385, '_elementor_version', '4.0.1'),
(4075, 385, '_elementor_pro_version', '4.0.1'),
(4076, 385, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4077, 385, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"Includes examination and, if needed, X-rays. One-time offer for new patients booking online. Treatment not included. Terms apply.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4121, 389, '_wp_page_template', 'elementor_header_footer'),
(4122, 389, '_elementor_edit_mode', 'builder'),
(4123, 389, '_elementor_template_type', 'wp-page'),
(4124, 389, '_elementor_version', '4.0.1'),
(4125, 389, '_elementor_pro_version', '4.0.1'),
(4126, 389, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4127, 389, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"Includes examination and, if needed, X-rays. One-time offer for new patients booking online. Treatment not included. <a href=\\\"#\\\">Terms apply.<\\/a>\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4093, 386, '_elementor_page_settings', 'a:0:{}'),
(3851, 366, '_elementor_pro_version', '4.0.1'),
(2696, 268, '_wp_page_template', 'elementor_header_footer'),
(2697, 268, '_elementor_edit_mode', 'builder'),
(2698, 268, '_elementor_template_type', 'wp-page'),
(2699, 268, '_elementor_version', '4.0.1'),
(2700, 268, '_elementor_pro_version', '4.0.1'),
(2701, 268, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2702, 268, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"115da5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5575eb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"39f99fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58f02ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d6f9cf\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4096, 387, '_wp_page_template', 'elementor_header_footer'),
(4097, 387, '_elementor_edit_mode', 'builder'),
(2592, 258, '_elementor_page_settings', 'a:0:{}'),
(4689, 438, '_elementor_edit_mode', 'builder'),
(4690, 438, '_elementor_template_type', 'wp-page'),
(4691, 438, '_elementor_version', '4.0.1'),
(4692, 438, '_elementor_pro_version', '4.0.1'),
(4693, 438, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4694, 438, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a55114e\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/implantation_14717707.svg\",\"id\":435},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4789, 227, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>'),
(4790, 250, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>'),
(4791, 232, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>'),
(4792, 233, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>'),
(4793, 234, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>'),
(4794, 235, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>'),
(4795, 236, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4799, 435, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M21.32153,69.56442a23.37174,23.37174,0,0,0-9.24.09,4.44636,4.44636,0,0,0-3.48,3.76,49.235,49.235,0,0,0,.11,13.34,4.46823,4.46823,0,0,0,2.52991,3.37,13.40178,13.40178,0,0,0,8.13013,1.17,1.41747,1.41747,0,0,1-.04-.2,60.35016,60.35016,0,0,1-.15-16.39014A10.80932,10.80932,0,0,1,21.32153,69.56442Z\"></path><path d=\"M66.28467,76.58529a55.58765,55.58765,0,0,0,.16064,15.33588,4.97633,4.97633,0,0,0,2.75,3.67188,14.58249,14.58249,0,0,0,13.05457-.0506A5.05254,5.05254,0,0,0,85.123,91.71865a55.69556,55.69556,0,0,0,.12878-15.13336,5.04,5.04,0,0,0-3.95459-4.26447,26.6315,26.6315,0,0,0-11.058,0A5.0398,5.0398,0,0,0,66.28467,76.58529Z\"></path><path d=\"M25.13574,75.50631a54.01893,54.01893,0,0,0,.1499,14.86987,4.82949,4.82949,0,0,0,2.66,3.56006,13.72507,13.72507,0,0,0,8.68005,1.24,6.01527,6.01527,0,0,0,4.92993-5.91071V76.85281a5.95076,5.95076,0,0,0-5.4469-5.97784,25.939,25.939,0,0,0-7.123.49127A4.92716,4.92716,0,0,0,25.13574,75.50631Z\"></path><path d=\"M90.3916,95.04446a14.41659,14.41659,0,0,0,9.56995-1.15,4.89591,4.89591,0,0,0,2.77991-3.71008,53.76773,53.76773,0,0,0,.13013-14.66992,4.89423,4.89423,0,0,0-3.83008-4.14,25.78941,25.78941,0,0,0-9.59-.21,10.95734,10.95734,0,0,1,1.75,4.61,62.20134,62.20134,0,0,1-.15,16.86A10.7274,10.7274,0,0,1,90.3916,95.04446Z\"></path><path d=\"M108.67151,91.10452a1.28692,1.28692,0,0,1-.03992.18994,13.40091,13.40091,0,0,0,8.12988-1.17,4.49037,4.49037,0,0,0,2.53-3.37,49.23988,49.23988,0,0,0,.11011-13.34,4.44666,4.44666,0,0,0-3.48-3.76,23.3724,23.3724,0,0,0-9.24011-.09,10.80932,10.80932,0,0,1,2.14,5.14A60.4323,60.4323,0,0,1,108.67151,91.10452Z\"></path><path d=\"M126.42456,98.2a42.34688,42.34688,0,0,0-2.88354-5.416,10.92132,10.92132,0,0,1-4.05029,3.23389,20.68914,20.68914,0,0,1-8.65234,1.96973,18.69958,18.69958,0,0,1-4.7373-.615,11.38535,11.38535,0,0,1-3.4209,2.42554,22.01776,22.01776,0,0,1-9.22852,2.10547,20.10376,20.10376,0,0,1-7.01025-1.28479,11.53128,11.53128,0,0,1-1.4751.82874,22.42428,22.42428,0,0,1-9.417,2.15625,20.88279,20.88279,0,0,1-9.19629-2.165l-.001-.001A11.54485,11.54485,0,0,1,64.001,99.91531a11.54666,11.54666,0,0,1-2.35107,1.52246l-.001.001a20.8787,20.8787,0,0,1-9.19531,2.165,22.44613,22.44613,0,0,1-9.4209-2.15723,11.5312,11.5312,0,0,1-1.47266-.82739,20.11541,20.11541,0,0,1-7.01074,1.28442,21.998,21.998,0,0,1-9.22314-2.10352,11.39616,11.39616,0,0,1-3.42456-2.42773,18.70785,18.70785,0,0,1-4.74341.61621,20.61324,20.61324,0,0,1-8.62744-1.96191,10.97713,10.97713,0,0,1-4.07007-3.24512A42.33219,42.33219,0,0,0,1.57544,98.2a6.68961,6.68961,0,0,0,5.604,9.36768,40.95427,40.95427,0,0,1,14.45288,3.50513c8.61462,4.13489,22.35864,8.67139,35.49939,5.50061a29.22367,29.22367,0,0,1,13.73657,0c13.14075,3.17078,26.88489-1.36572,35.49939-5.50061a40.95489,40.95489,0,0,1,14.45288-3.50513A6.68961,6.68961,0,0,0,126.42456,98.2Z\"></path><path d=\"M39.53845,43.34554a3.02093,3.02093,0,0,0,2.7428,1.70978H64.119a3.02078,3.02078,0,0,0,2.74451-1.71307c.07227-.15466.14209-.31152.209-.469a15.2541,15.2541,0,0,0,1.17212-6.37488c-.08-3.0575-.74036-7.3988-3.72852-8.51172a10.45,10.45,0,0,0-6.81177-.1344,15.28619,15.28619,0,0,1-9.00464,0,10.44927,10.44927,0,0,0-6.81152.1344c-2.98547,1.11182-3.6499,5.44592-3.73267,8.50293a15.21331,15.21331,0,0,0,1.17725,6.39661C39.39868,43.04043,39.46729,43.19406,39.53845,43.34554Zm8.306-10.9115a1.37717,1.37717,0,0,1,1.72876-.91638,12.34805,12.34805,0,0,0,7.25757,0,1.38359,1.38359,0,1,1,.8125,2.6452,15.14388,15.14388,0,0,1-8.88257,0A1.38224,1.38224,0,0,1,47.84448,32.434Z\"></path><path d=\"M61.5542,53.95834a2.26541,2.26541,0,1,0,0-4.53082H44.84546a2.26541,2.26541,0,0,0,0,4.53082h3.74585v3.37213l-1.31323.23151a1.88822,1.88822,0,0,0-1.59326,1.91772,1.8288,1.8288,0,0,0,2.14868,1.70593l.75781-.13361v2.44531l-1.31323.23157a1.8882,1.8882,0,0,0-1.59326,1.91766A1.82847,1.82847,0,0,0,47.8335,67.3525l.75781-.13361v1.36377a2.4434,2.4434,0,0,0,.61646,1.62244l3.08057,3.46954a1.22161,1.22161,0,0,0,1.82715,0l3.08069-3.46954a2.44329,2.44329,0,0,0,.61633-1.62244V65.5931l1.291-.2276a1.90024,1.90024,0,0,0,1.60059-2.04224,1.83181,1.83181,0,0,0-2.13794-1.58459l-.75366.13287V59.42623l1.291-.22766a1.90012,1.90012,0,0,0,1.60034-2.0434,1.83247,1.83247,0,0,0-2.1377-1.58344l-.75366.13287V53.95834Z\"></path><path d=\"M88.46362,53.21761a2,2,0,0,0,2.95764,0L102.89551,40.6152a2,2,0,0,0-1.47888-3.34644H95.69238V16.11288a5.75,5.75,0,0,0-11.5,0V37.26876H78.46814a2,2,0,0,0-1.47888,3.34644Z\"></path><path d=\"M15.52112,53.21761a2,2,0,0,0,2.95764,0L29.95313,40.6152a2,2,0,0,0-1.479-3.34644H22.75V16.11288a5.75,5.75,0,0,0-11.5,0V37.26876H5.52563A2,2,0,0,0,4.04688,40.6152Z\"></path></svg>'),
(4798, 228, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>'),
(4797, 249, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>'),
(4796, 248, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>'),
(2595, 259, '_wp_page_template', 'elementor_header_footer'),
(2596, 259, '_elementor_edit_mode', 'builder'),
(2597, 259, '_elementor_template_type', 'wp-page'),
(2598, 259, '_elementor_version', '4.0.1'),
(2599, 259, '_elementor_pro_version', '4.0.1'),
(2600, 259, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2601, 259, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"115da5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5575eb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"39f99fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58f02ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d6f9cf\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4098, 387, '_elementor_template_type', 'wp-page'),
(4099, 387, '_elementor_version', '4.0.1'),
(4100, 387, '_elementor_pro_version', '4.0.1'),
(4101, 387, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4102, 387, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"Includes examination and, if needed, X-rays. One-time offer for new patients booking online. Treatment not included. Terms apply.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2603, 259, '_elementor_page_settings', 'a:0:{}'),
(4677, 437, '_wp_page_template', 'elementor_header_footer'),
(4678, 437, '_elementor_edit_mode', 'builder'),
(4679, 437, '_elementor_template_type', 'wp-page'),
(4680, 437, '_elementor_version', '4.0.1'),
(4681, 437, '_elementor_pro_version', '4.0.1'),
(4682, 437, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4683, 437, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a55114e\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4685, 437, '_elementor_page_settings', 'a:0:{}'),
(2607, 260, '_elementor_edit_mode', 'builder'),
(2608, 260, '_elementor_template_type', 'wp-page'),
(2609, 260, '_elementor_version', '4.0.1'),
(2610, 260, '_elementor_pro_version', '4.0.1'),
(2611, 260, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2612, 260, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"115da5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5575eb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"39f99fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58f02ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d6f9cf\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4104, 387, '_elementor_page_settings', 'a:0:{}'),
(4108, 388, '_elementor_edit_mode', 'builder'),
(4109, 388, '_elementor_template_type', 'wp-page'),
(4110, 388, '_elementor_version', '4.0.1'),
(4111, 388, '_elementor_pro_version', '4.0.1'),
(4112, 388, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4113, 388, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"Includes examination and, if needed, X-rays. One-time offer for new patients booking online. Treatment not included. <a href=\\\"#\\\">Terms apply.<\\/a>\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4210, 396, '_wp_page_template', 'elementor_header_footer'),
(4211, 396, '_elementor_edit_mode', 'builder'),
(4212, 396, '_elementor_template_type', 'wp-page'),
(4213, 396, '_elementor_version', '4.0.1'),
(4214, 396, '_elementor_pro_version', '4.0.1'),
(4215, 396, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4216, 396, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"<span style=\\\"font-size:13px;font-style: italic;\\\"> Includes examination and, if needed, X-rays. One-time offer for new patients booking online. Treatment not included. <a href=\\\"#\\\">Terms apply.<\\/a>\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4129, 389, '_elementor_page_settings', 'a:0:{}'),
(4132, 390, '_wp_page_template', 'elementor_header_footer'),
(4133, 390, '_elementor_edit_mode', 'builder'),
(4134, 390, '_elementor_template_type', 'wp-page'),
(4135, 390, '_elementor_version', '4.0.1'),
(4136, 390, '_elementor_pro_version', '4.0.1'),
(4137, 390, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4138, 390, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"Includes examination and, if needed, X-rays. One-time offer for new patients booking online. Treatment not included. <a href=\\\"#\\\">Terms apply.<\\/a>\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4140, 390, '_elementor_page_settings', 'a:0:{}'),
(4143, 391, '_wp_page_template', 'elementor_header_footer'),
(4144, 391, '_elementor_edit_mode', 'builder'),
(4145, 391, '_elementor_template_type', 'wp-page'),
(4146, 391, '_elementor_version', '4.0.1'),
(4147, 391, '_elementor_pro_version', '4.0.1'),
(4148, 391, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4149, 391, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"<span style=\\\"font-size:13px;font-style: italic;\\\"> Includes examination and, if needed, X-rays. One-time offer for new patients booking online. Treatment not included. <a href=\\\"#\\\">Terms apply.<\\/a>\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3848, 366, '_elementor_edit_mode', 'builder'),
(2862, 283, '_elementor_pro_version', '4.0.1'),
(2863, 283, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2864, 283, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"115da5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5575eb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"39f99fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58f02ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d6f9cf\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2623, 262, '_elementor_edit_mode', 'builder'),
(2624, 262, '_elementor_template_type', 'footer'),
(2625, 263, '_elementor_edit_mode', 'builder'),
(2626, 263, '_elementor_template_type', 'footer'),
(2627, 262, '_elementor_version', '4.0.1'),
(2628, 262, '_elementor_pro_version', '4.0.1'),
(2629, 262, '_astra_content_layout_flag', 'disabled'),
(2631, 262, 'ast-title-bar-display', 'disabled'),
(2632, 262, 'ast-featured-img', 'disabled'),
(2633, 262, 'ast-site-content-layout', 'full-width-container'),
(2634, 262, 'site-sidebar-layout', 'no-sidebar');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2639, 262, '_elementor_data', '[{\"id\":\"050d7a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f95286\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7a08fdf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fa7fbc0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"245b94a\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"c549993\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5178aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a119aba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb03e1c\"}],\"pp_display_conditions\":[{\"_id\":\"6225907\"}]},\"elements\":[{\"id\":\"48f713c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick link\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d558958\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact Me\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/contact-me\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1906bdb\"},{\"text\":\"Refer a Patient\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/refer-a-patient\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6ff11d1\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c2a7436\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#d2b48c\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\",\"pp_condition_date_time_before_value\":\"2026-04-08 09:29\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor1\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"ef97d44\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e98782c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc78818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9196257\"}],\"pp_display_conditions\":[{\"_id\":\"c22ad5d\"}]},\"elements\":[{\"id\":\"4cb5137\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca34a69\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"68bada8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbe85e7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8538dde\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"870b784\"}],\"pp_display_conditions\":[{\"_id\":\"c50a849\"}]},\"elements\":[{\"id\":\"9bcc785\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf23c1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2ae9de3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"pp_display_conditions\":[{\"_id\":\"cedb7a1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"a4a465f\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%22392%22%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"25fd49f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#08203EE0\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ae1206\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cb38fb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fa742f7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"17\",\"bottom\":\"21\",\"left\":\"17\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b69a80d\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"54d74df\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All rights reserved.\",\"header_size\":\"p\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2151eb4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(2636, 262, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(2637, 262, '_edit_lock', '1775545143:1'),
(2638, 262, '_wp_page_template', 'default'),
(2640, 264, '_elementor_edit_mode', 'builder'),
(2641, 264, '_elementor_template_type', 'footer'),
(2642, 264, '_elementor_version', '4.0.1'),
(2643, 264, '_elementor_pro_version', '4.0.1'),
(2644, 264, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(2645, 264, '_wp_page_template', 'default'),
(2646, 264, '_elementor_data', '[{\"id\":\"050d7a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f95286\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7a08fdf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fa7fbc0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"245b94a\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"c549993\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5178aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a119aba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb03e1c\"}],\"pp_display_conditions\":[{\"_id\":\"6225907\"}]},\"elements\":[{\"id\":\"48f713c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick link\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d558958\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1906bdb\"},{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6ff11d1\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c2a7436\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#d2b48c\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\",\"pp_condition_date_time_before_value\":\"2026-04-08 09:29\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor1\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"ef97d44\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e98782c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc78818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9196257\"}],\"pp_display_conditions\":[{\"_id\":\"c22ad5d\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"68bada8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbe85e7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8538dde\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"870b784\"}],\"pp_display_conditions\":[{\"_id\":\"c50a849\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(2665, 266, '_elementor_edit_mode', 'builder'),
(2666, 266, '_elementor_template_type', 'footer'),
(2667, 266, '_elementor_version', '4.0.1'),
(2668, 266, '_elementor_pro_version', '4.0.1'),
(2669, 266, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(2670, 266, '_wp_page_template', 'default'),
(2671, 266, '_elementor_data', '[{\"id\":\"050d7a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f95286\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7a08fdf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fa7fbc0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"245b94a\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"c549993\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5178aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a119aba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb03e1c\"}],\"pp_display_conditions\":[{\"_id\":\"6225907\"}]},\"elements\":[{\"id\":\"48f713c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick link\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d558958\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact Me\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/contact-me\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1906bdb\"},{\"text\":\"Referral\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/referral\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6ff11d1\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c2a7436\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#d2b48c\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\",\"pp_condition_date_time_before_value\":\"2026-04-08 09:29\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor1\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"ef97d44\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e98782c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc78818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9196257\"}],\"pp_display_conditions\":[{\"_id\":\"c22ad5d\"}]},\"elements\":[{\"id\":\"4cb5137\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"68bada8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbe85e7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8538dde\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"870b784\"}],\"pp_display_conditions\":[{\"_id\":\"c50a849\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(2650, 262, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2673, 266, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3881, 369, '_elementor_pro_version', '4.0.1'),
(3859, 367, '_wp_page_template', 'elementor_header_footer'),
(3860, 367, '_elementor_edit_mode', 'builder'),
(3861, 367, '_elementor_template_type', 'wp-page'),
(3862, 367, '_elementor_version', '4.0.1'),
(3863, 367, '_elementor_pro_version', '4.0.1'),
(3864, 367, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3865, 367, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"758369f\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3727, 357, '_elementor_edit_mode', 'builder'),
(3728, 357, '_elementor_template_type', 'footer'),
(3729, 357, '_elementor_version', '4.0.1'),
(3730, 357, '_elementor_pro_version', '4.0.1'),
(3731, 357, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3732, 357, '_wp_page_template', 'default');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3733, 357, '_elementor_data', '[{\"id\":\"050d7a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f95286\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7a08fdf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fa7fbc0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"245b94a\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"c549993\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5178aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a119aba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb03e1c\"}],\"pp_display_conditions\":[{\"_id\":\"6225907\"}]},\"elements\":[{\"id\":\"48f713c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick link\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d558958\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact Me\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/contact-me\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1906bdb\"},{\"text\":\"Refer a Patient\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/refer-a-patient\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6ff11d1\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c2a7436\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#d2b48c\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\",\"pp_condition_date_time_before_value\":\"2026-04-08 09:29\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor1\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"ef97d44\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e98782c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc78818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9196257\"}],\"pp_display_conditions\":[{\"_id\":\"c22ad5d\"}]},\"elements\":[{\"id\":\"4cb5137\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca34a69\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"68bada8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbe85e7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8538dde\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"870b784\"}],\"pp_display_conditions\":[{\"_id\":\"c50a849\"}]},\"elements\":[{\"id\":\"9bcc785\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf23c1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"25fd49f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#08203EE0\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ae1206\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cb38fb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fa742f7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"17\",\"bottom\":\"21\",\"left\":\"17\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b69a80d\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"54d74df\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All rights reserved.\",\"header_size\":\"p\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2151eb4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(2681, 267, '_elementor_edit_mode', 'builder'),
(2682, 267, '_elementor_template_type', 'footer'),
(2683, 267, '_elementor_version', '4.0.1'),
(2684, 267, '_elementor_pro_version', '4.0.1'),
(2685, 267, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(2686, 267, '_wp_page_template', 'default'),
(2687, 267, '_elementor_data', '[{\"id\":\"050d7a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f95286\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7a08fdf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fa7fbc0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"245b94a\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"c549993\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5178aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a119aba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb03e1c\"}],\"pp_display_conditions\":[{\"_id\":\"6225907\"}]},\"elements\":[{\"id\":\"48f713c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick link\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d558958\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact Me\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/contact-me\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1906bdb\"},{\"text\":\"Referral\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/referral\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6ff11d1\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c2a7436\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#d2b48c\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\",\"pp_condition_date_time_before_value\":\"2026-04-08 09:29\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor1\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"ef97d44\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e98782c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc78818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9196257\"}],\"pp_display_conditions\":[{\"_id\":\"c22ad5d\"}]},\"elements\":[{\"id\":\"4cb5137\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca34a69\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"68bada8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbe85e7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8538dde\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"870b784\"}],\"pp_display_conditions\":[{\"_id\":\"c50a849\"}]},\"elements\":[{\"id\":\"9bcc785\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf23c1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"25fd49f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#08203EE0\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ae1206\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cb38fb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fa742f7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"17\",\"bottom\":\"21\",\"left\":\"17\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b69a80d\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"54d74df\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All rights reserved.\",\"header_size\":\"p\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2151eb4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(2689, 267, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4195, 395, '_elementor_edit_mode', 'builder'),
(4196, 395, '_elementor_template_type', 'footer'),
(4197, 395, '_elementor_version', '4.0.1'),
(4198, 395, '_elementor_pro_version', '4.0.1'),
(4199, 395, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4200, 395, '_wp_page_template', 'default'),
(4201, 395, '_elementor_data', '[{\"id\":\"050d7a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f95286\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7a08fdf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fa7fbc0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"245b94a\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"c549993\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5178aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a119aba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb03e1c\"}],\"pp_display_conditions\":[{\"_id\":\"6225907\"}]},\"elements\":[{\"id\":\"48f713c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick link\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d558958\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact Me\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/contact-me\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1906bdb\"},{\"text\":\"Refer a Patient\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/refer-a-patient\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6ff11d1\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c2a7436\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#d2b48c\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\",\"pp_condition_date_time_before_value\":\"2026-04-08 09:29\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor1\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"ef97d44\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e98782c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc78818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9196257\"}],\"pp_display_conditions\":[{\"_id\":\"c22ad5d\"}]},\"elements\":[{\"id\":\"4cb5137\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca34a69\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"68bada8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbe85e7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8538dde\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"870b784\"}],\"pp_display_conditions\":[{\"_id\":\"c50a849\"}]},\"elements\":[{\"id\":\"9bcc785\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf23c1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2ae9de3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"pp_display_conditions\":[{\"_id\":\"cedb7a1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"a4a465f\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%22392%22%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"25fd49f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#08203EE0\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ae1206\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cb38fb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fa742f7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"17\",\"bottom\":\"21\",\"left\":\"17\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b69a80d\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"54d74df\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All rights reserved.\",\"header_size\":\"p\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2151eb4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(2704, 268, '_elementor_page_settings', 'a:0:{}'),
(4698, 10, '_elementor_page_settings', 'a:0:{}'),
(4699, 10, '_elementor_controls_usage', 'a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:19:\"image_border_radius\";i:1;s:5:\"width\";i:1;s:5:\"space\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:8;s:11:\"header_size\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:5:\"align\";i:6;s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:8;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:4:{s:14:\"headline_style\";i:1;s:11:\"before_text\";i:1;s:16:\"highlighted_text\";i:1;s:13:\"rotating_text\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_text\";a:4:{s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:33:\"highlighted_text_background_color\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:1:{s:16:\"social_icon_list\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:9:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:13:\"border_radius\";i:1;}s:20:\"section_social_hover\";a:1:{s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:6:{s:14:\"flex_direction\";i:5;s:13:\"content_width\";i:4;s:5:\"width\";i:3;s:8:\"flex_gap\";i:2;s:20:\"flex_justify_content\";i:2;s:16:\"flex_align_items\";i:1;}}s:5:\"style\";a:3:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:7;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:7;}s:14:\"section_layout\";a:3:{s:7:\"padding\";i:4;s:16:\"_flex_align_self\";i:2;s:11:\"css_classes\";i:1;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:4;s:18:\"animation_duration\";i:4;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:20:\"pp-info-box-carousel\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:18:\"section_info_boxes\";a:6:{s:13:\"pp_info_boxes\";i:3;s:6:\"layout\";i:3;s:7:\"columns\";i:2;s:20:\"columns_mobile_extra\";i:1;s:14:\"title_html_tag\";i:2;s:18:\"equal_height_boxes\";i:2;}}s:5:\"style\";a:4:{s:20:\"section_layout_style\";a:2:{s:11:\"columns_gap\";i:3;s:8:\"rows_gap\";i:3;}s:27:\"section_info_box_icon_style\";a:3:{s:18:\"icon_border_radius\";i:1;s:14:\"icon_img_width\";i:1;s:9:\"icon_size\";i:2;}s:22:\"section_info_box_style\";a:3:{s:30:\"info_box_background_background\";i:2;s:25:\"info_box_background_color\";i:2;s:16:\"info_box_padding\";i:2;}s:28:\"section_info_box_title_style\";a:1:{s:12:\"title_margin\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}}'),
(4636, 433, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4648, 434, '_elementor_edit_mode', 'builder'),
(4649, 434, '_elementor_template_type', 'header'),
(4650, 434, '_elementor_version', '4.0.1'),
(4651, 434, '_elementor_pro_version', '4.0.1'),
(4652, 434, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4653, 434, '_wp_page_template', 'default'),
(4654, 434, '_elementor_data', '[{\"id\":\"5dc2a09\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9304530\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db274d5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e488ed\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"49a6def\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8e6943e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Book your complimentary consultation\",\"selected_icon\":{\"value\":\"far fa-calendar-alt\",\"library\":\"fa-regular\"},\"_id\":\"057ff9d\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"90f2d1d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_typography_typography\":\"custom\",\"icon_typography_text_transform\":\"capitalize\",\"icon_typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d3ae750\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fc10808\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4f9b77b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f12d87c\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#08203E14\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"876574e\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"3bc14cb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2061631\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88932f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"26ff0e8\"}],\"pp_display_conditions\":[{\"_id\":\"86b987c\"}]},\"elements\":[{\"id\":\"6382518\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/logo-15.png\",\"id\":47,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"1e840e0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"754dc3d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d4ffd9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"be2a022\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5bd3673\"}],\"pp_display_conditions\":[{\"_id\":\"0aa1f89\"}]},\"elements\":[{\"id\":\"d9830ef\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_background_color\":\"#BF515100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4b8d247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true}],\"isInner\":false}]'),
(4659, 45, '_elementor_page_settings', 'a:0:{}'),
(4660, 45, '_elementor_controls_usage', 'a:4:{s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:1:{s:10:\"icon_align\";i:1;}s:18:\"section_text_style\";a:3:{s:26:\"icon_typography_typography\";i:1;s:30:\"icon_typography_text_transform\";i:1;s:31:\"icon_typography_text_decoration\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:4;s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:1;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:4;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:2;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"align\";i:1;s:5:\"width\";i:1;s:5:\"space\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:16:\"pp-advanced-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:3:{s:11:\"align_items\";i:1;s:9:\"menu_type\";i:1;s:12:\"toggle_align\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_style_main_menu\";a:4:{s:28:\"padding_horizontal_menu_item\";i:1;s:26:\"padding_vertical_menu_item\";i:1;s:18:\"menu_space_between\";i:1;s:13:\"pointer_width\";i:1;}s:12:\"style_toggle\";a:1:{s:23:\"toggle_background_color\";i:1;}s:16:\"style_typography\";a:4:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:30:\"dropdown_typography_typography\";i:1;s:31:\"dropdown_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(4655, 434, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4663, 435, '_wp_attached_file', '2026/04/implantation_14717707.svg'),
(4664, 435, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:4652;s:5:\"width\";i:128;s:6:\"height\";i:128;}'),
(4674, 436, '_elementor_page_settings', 'a:0:{}'),
(2707, 269, '_wp_page_template', 'elementor_header_footer'),
(2708, 269, '_elementor_edit_mode', 'builder'),
(2709, 269, '_elementor_template_type', 'wp-page'),
(2710, 269, '_elementor_version', '4.0.1'),
(2711, 269, '_elementor_pro_version', '4.0.1'),
(2712, 269, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2713, 269, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"115da5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5575eb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"39f99fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58f02ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d6f9cf\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2715, 269, '_elementor_page_settings', 'a:0:{}'),
(3849, 366, '_elementor_template_type', 'wp-page'),
(3850, 366, '_elementor_version', '4.0.1'),
(2718, 270, '_wp_page_template', 'elementor_header_footer'),
(2719, 270, '_elementor_edit_mode', 'builder'),
(2720, 270, '_elementor_template_type', 'wp-page'),
(2721, 270, '_elementor_version', '4.0.1'),
(2722, 270, '_elementor_pro_version', '4.0.1'),
(2723, 270, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2724, 270, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"115da5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5575eb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"39f99fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58f02ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d6f9cf\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4268, 401, '_wp_page_template', 'elementor_header_footer'),
(4246, 399, '_wp_page_template', 'elementor_header_footer'),
(4247, 399, '_elementor_edit_mode', 'builder'),
(4248, 399, '_elementor_template_type', 'wp-page'),
(4249, 399, '_elementor_version', '4.0.1'),
(4250, 399, '_elementor_pro_version', '4.0.1'),
(4251, 399, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4252, 399, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"<span style=\\\"font-size:13px;font-style: italic;\\\"> Includes examination and, if needed, X-rays. One-time offer for new patients booking online. Treatment not included. <a href=\\\"elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjM5MiIsInRvZ2dsZSI6ZmFsc2V9\\\">Terms apply.<\\/a>\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4365, 409, '_wp_page_template', 'elementor_header_footer'),
(4157, 392, '_elementor_source', 'post'),
(4158, 392, '_elementor_edit_mode', 'builder'),
(4159, 392, '_elementor_template_type', 'popup'),
(4160, 392, '_elementor_version', '4.0.1'),
(4161, 392, '_elementor_pro_version', '4.0.1'),
(4162, 392, '_astra_content_layout_flag', 'disabled'),
(4179, 392, '_elementor_data', '[{\"id\":\"fc82c6f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8e872e1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c5c3d95\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13aa433\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2cf3804\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"b6cdd65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"This offer includes a comprehensive dental examination and, if clinically necessary, appropriate radiographs. It is available exclusively for new patients who book through our website and is limited to one consultation per patient. We reserve the right to determine eligibility, the scope of services provided, and case acceptance based on clinical judgment. Additional diagnostic tests or treatment, if required, are not included. This offer does not include any treatment fees.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e9ecaad\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]'),
(4164, 392, 'ast-title-bar-display', 'disabled'),
(4165, 392, 'ast-featured-img', 'disabled'),
(4166, 392, 'ast-site-content-layout', 'full-width-container'),
(4167, 392, 'site-sidebar-layout', 'no-sidebar'),
(4169, 392, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4170, 392, '_edit_lock', '1775545665:1'),
(4171, 393, '_elementor_source', 'post'),
(4172, 393, '_elementor_edit_mode', 'builder'),
(4173, 393, '_elementor_template_type', 'popup'),
(4174, 393, '_elementor_version', '4.0.1'),
(4175, 393, '_elementor_pro_version', '4.0.1'),
(4176, 393, '_elementor_page_settings', 'a:0:{}'),
(4177, 393, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4178, 392, '_wp_page_template', 'default'),
(4180, 394, '_elementor_source', 'post'),
(4181, 394, '_elementor_edit_mode', 'builder'),
(4182, 394, '_elementor_template_type', 'popup'),
(4183, 394, '_elementor_version', '4.0.1'),
(4184, 394, '_elementor_pro_version', '4.0.1'),
(4185, 394, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4186, 394, '_wp_page_template', 'default'),
(4187, 394, '_elementor_data', '[{\"id\":\"fc82c6f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8e872e1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c5c3d95\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"13aa433\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2cf3804\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"b6cdd65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"This offer includes a comprehensive dental examination and, if clinically necessary, appropriate radiographs. It is available exclusively for new patients who book through our website and is limited to one consultation per patient. We reserve the right to determine eligibility, the scope of services provided, and case acceptance based on clinical judgment. Additional diagnostic tests or treatment, if required, are not included. This offer does not include any treatment fees.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e9ecaad\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]'),
(4189, 392, '_elementor_page_settings', 'a:0:{}'),
(4190, 392, '_elementor_controls_usage', 'a:2:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(4191, 392, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4192, 392, '_elementor_popup_display_settings', 'a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),
(4202, 395, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4293, 262, '_elementor_page_settings', 'a:0:{}'),
(4294, 262, '_elementor_controls_usage', 'a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:4;s:11:\"header_size\";i:4;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:3;s:10:\"link_click\";i:3;}}s:5:\"style\";a:1:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:3;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:2:{s:16:\"social_icon_list\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:9:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:13:\"border_radius\";i:1;}s:20:\"section_social_hover\";a:1:{s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:5;s:13:\"content_width\";i:3;s:5:\"width\";i:3;s:9:\"flex_wrap\";i:1;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:5;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:19:\"_section_responsive\";a:6:{s:15:\"hide_widescreen\";i:1;s:12:\"hide_desktop\";i:1;s:17:\"hide_tablet_extra\";i:1;s:11:\"hide_tablet\";i:1;s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_button\";a:1:{s:4:\"link\";i:1;}}}}}'),
(4218, 396, '_elementor_page_settings', 'a:0:{}'),
(4221, 397, '_wp_page_template', 'elementor_header_footer'),
(4222, 397, '_elementor_edit_mode', 'builder'),
(4223, 397, '_elementor_template_type', 'wp-page'),
(4224, 397, '_elementor_version', '4.0.1'),
(4225, 397, '_elementor_pro_version', '4.0.1'),
(4226, 397, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4227, 397, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"<span style=\\\"font-size:13px;font-style: italic;\\\"> Includes examination and, if needed, X-rays. One-time offer for new patients booking online. Treatment not included. <a href=\\\"#\\\">Terms apply.<\\/a>\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4229, 397, '_elementor_page_settings', 'a:0:{}'),
(4232, 398, '_wp_page_template', 'elementor_header_footer'),
(4233, 398, '_elementor_edit_mode', 'builder'),
(4234, 398, '_elementor_template_type', 'wp-page'),
(4235, 398, '_elementor_version', '4.0.1'),
(4236, 398, '_elementor_pro_version', '4.0.1'),
(4237, 398, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4238, 398, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"<span style=\\\"font-size:13px;font-style: italic;\\\"> Includes examination and, if needed, X-rays. One-time offer for new patients booking online. Treatment not included. <a href=\\\"elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjM5MiIsInRvZ2dsZSI6ZmFsc2V9\\\">Terms apply.<\\/a>\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4297, 403, '_wp_page_template', 'elementor_header_footer'),
(4298, 403, '_elementor_edit_mode', 'builder'),
(4299, 403, '_elementor_template_type', 'wp-page'),
(4300, 403, '_elementor_version', '4.0.1'),
(4301, 403, '_elementor_pro_version', '4.0.1'),
(4302, 403, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4303, 403, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"<span style=\\\"font-size:13px;font-style: italic;\\\"> Includes examination and, if needed, X-rays. One-time offer for new patients booking online. Treatment not included. <a href=\\\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjM5MiIsInRvZ2dsZSI6ZmFsc2V9\\\">Terms apply.<\\/a>\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3847, 366, '_wp_page_template', 'elementor_header_footer'),
(2891, 286, '_wp_page_template', 'elementor_header_footer'),
(2892, 286, '_elementor_edit_mode', 'builder'),
(2893, 286, '_elementor_template_type', 'wp-page'),
(2894, 286, '_elementor_version', '4.0.1'),
(2895, 286, '_elementor_pro_version', '4.0.1');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2896, 286, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(2897, 286, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"115da5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5575eb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"39f99fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58f02ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d6f9cf\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2732, 271, '_wp_attached_file', '2026/04/fav-11.png'),
(2733, 271, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:540;s:6:\"height\";i:540;s:4:\"file\";s:18:\"2026/04/fav-11.png\";s:8:\"filesize\";i:59161;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"fav-11-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29659;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"fav-11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12197;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2734, 272, '_wp_attached_file', '2026/04/cropped-fav-11.png'),
(2735, 272, '_wp_attachment_context', 'site-icon'),
(2736, 272, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:26:\"2026/04/cropped-fav-11.png\";s:8:\"filesize\";i:61851;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"cropped-fav-11-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32059;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"cropped-fav-11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12672;}s:13:\"site_icon-270\";a:5:{s:4:\"file\";s:26:\"cropped-fav-11-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27701;}s:13:\"site_icon-192\";a:5:{s:4:\"file\";s:26:\"cropped-fav-11-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17821;}s:13:\"site_icon-180\";a:5:{s:4:\"file\";s:26:\"cropped-fav-11-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16224;}s:12:\"site_icon-32\";a:5:{s:4:\"file\";s:24:\"cropped-fav-11-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1613;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2737, 12, '_elementor_edit_mode', 'builder'),
(2738, 12, '_astra_content_layout_flag', 'disabled'),
(2739, 12, 'ast-title-bar-display', 'disabled'),
(2740, 12, '_elementor_template_type', 'wp-page'),
(2741, 12, '_elementor_version', '4.0.1'),
(2742, 12, '_elementor_pro_version', '4.0.1');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2773, 12, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}],\"css_classes\":\"form_style\",\"custom_css\":\"\\/*.form_style .elementor-field-option a:hover{*\\/\\n\\/*    color:#0B6623;*\\/\\n\\/*    text-decoration: underline;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment at one of our following locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"<span style=\\\"font-size:13px;font-style: italic;\\\"> Includes examination and, if needed, X-rays. One-time offer for new patients booking online. Treatment not included. <a href=\\\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjM5MiIsInRvZ2dsZSI6ZmFsc2V9\\\">Terms apply.<\\/a>\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2744, 12, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4254, 399, '_elementor_page_settings', 'a:0:{}'),
(2881, 285, '_elementor_version', '4.0.1'),
(2882, 285, '_elementor_pro_version', '4.0.1'),
(2883, 285, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2884, 285, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"115da5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5575eb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"39f99fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58f02ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d6f9cf\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2878, 285, '_wp_page_template', 'elementor_header_footer'),
(2879, 285, '_elementor_edit_mode', 'builder'),
(2880, 285, '_elementor_template_type', 'wp-page'),
(2757, 274, '_wp_page_template', 'elementor_header_footer'),
(2759, 274, '_elementor_edit_mode', 'builder'),
(2760, 274, '_elementor_template_type', 'wp-page'),
(2761, 274, '_elementor_version', '4.0.1'),
(2762, 274, '_elementor_pro_version', '4.0.1'),
(2763, 274, '_elementor_page_settings', 'a:0:{}'),
(2764, 274, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(2765, 275, '_wp_page_template', 'elementor_header_footer'),
(2767, 275, '_elementor_edit_mode', 'builder'),
(2768, 275, '_elementor_template_type', 'wp-page'),
(2769, 275, '_elementor_version', '4.0.1'),
(2770, 275, '_elementor_pro_version', '4.0.1'),
(2771, 275, '_elementor_page_settings', 'a:0:{}'),
(2772, 275, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(2774, 276, '_wp_page_template', 'elementor_header_footer'),
(2776, 276, '_elementor_edit_mode', 'builder'),
(2777, 276, '_elementor_template_type', 'wp-page'),
(2778, 276, '_elementor_version', '4.0.1'),
(2779, 276, '_elementor_pro_version', '4.0.1'),
(2780, 276, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(2781, 276, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h3\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h3\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"pp_display_conditions\":[{\"_id\":\"be41540\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(2786, 277, '_wp_page_template', 'elementor_header_footer'),
(2788, 277, '_elementor_edit_mode', 'builder'),
(2789, 277, '_elementor_template_type', 'wp-page'),
(2790, 277, '_elementor_version', '4.0.1'),
(2791, 277, '_elementor_pro_version', '4.0.1'),
(2792, 277, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2793, 277, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h3\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h3\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"pp_display_conditions\":[{\"_id\":\"be41540\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(2844, 282, '_wp_page_template', 'elementor_header_footer'),
(2822, 280, '_wp_page_template', 'elementor_header_footer'),
(2824, 280, '_elementor_edit_mode', 'builder'),
(2825, 280, '_elementor_template_type', 'wp-page'),
(2826, 280, '_elementor_version', '4.0.1'),
(2827, 280, '_elementor_pro_version', '4.0.1'),
(2828, 280, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(2829, 280, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Offices\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"pp_display_conditions\":[{\"_id\":\"be41540\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(2963, 292, '_wp_page_template', 'elementor_header_footer'),
(3482, 336, '_wp_page_template', 'elementor_header_footer'),
(3484, 336, '_elementor_edit_mode', 'builder'),
(3485, 336, '_elementor_template_type', 'wp-page'),
(3486, 336, '_elementor_version', '4.0.1'),
(3487, 336, '_elementor_pro_version', '4.0.1'),
(3488, 336, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3489, 336, '_elementor_data', '[{\"id\":\"2ade5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d450ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5442f27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1169960\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"288836e\"}]},\"elements\":[{\"id\":\"5b600b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCFAF7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e42b8ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"46a79e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d3921e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82857f2\"}]},\"elements\":[{\"id\":\"76d4aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refer A Patient\",\"pp_display_conditions\":[{\"_id\":\"67a04ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4577\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name of Referring Dentist\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"4b403a7\"},{\"custom_id\":\"field_9f0a1ef\",\"field_label\":\" Name of Patient\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"9f0a1ef\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Referring Dentist Email\",\"width\":\"50\",\"_id\":\"e55b5cf\"},{\"custom_id\":\"field_b9e0909\",\"field_type\":\"date\",\"required\":\"true\",\"field_label\":\"Patient DOB\",\"width\":\"50\",\"_id\":\"b9e0909\"},{\"custom_id\":\"field_27bf4e1\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Patient Contact Number\",\"_id\":\"27bf4e1\"},{\"custom_id\":\"field_2ad7288\",\"required\":\"true\",\"field_label\":\"Reason for Referral\",\"_id\":\"2ad7288\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"caceca2\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"dd6bf5e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3510, 339, '_wp_page_template', 'elementor_header_footer'),
(3492, 337, '_wp_page_template', 'elementor_header_footer'),
(3494, 337, '_elementor_edit_mode', 'builder'),
(3495, 337, '_elementor_template_type', 'wp-page'),
(3496, 337, '_elementor_version', '4.0.1'),
(3497, 337, '_elementor_pro_version', '4.0.1'),
(3498, 337, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3499, 337, '_elementor_data', '[{\"id\":\"2ade5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d450ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5442f27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1169960\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"288836e\"}]},\"elements\":[{\"id\":\"5b600b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCFAF7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e42b8ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"46a79e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d3921e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82857f2\"}]},\"elements\":[{\"id\":\"76d4aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refer A Patient\",\"pp_display_conditions\":[{\"_id\":\"67a04ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4577\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name of Referring Dentist\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"4b403a7\"},{\"custom_id\":\"field_9f0a1ef\",\"field_label\":\" Name of Patient\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"9f0a1ef\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Referring Dentist Email\",\"width\":\"50\",\"_id\":\"e55b5cf\"},{\"custom_id\":\"field_b9e0909\",\"field_type\":\"date\",\"required\":\"true\",\"field_label\":\"Patient DOB\",\"width\":\"50\",\"_id\":\"b9e0909\"},{\"custom_id\":\"field_27bf4e1\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Patient Contact Number\",\"_id\":\"27bf4e1\"},{\"custom_id\":\"field_2ad7288\",\"required\":\"true\",\"field_label\":\"Reason for Referral\",\"_id\":\"2ad7288\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"caceca2\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"dd6bf5e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2794, 277, '_elementor_page_settings', 'a:0:{}'),
(2797, 278, '_wp_page_template', 'elementor_header_footer'),
(2799, 278, '_elementor_edit_mode', 'builder'),
(2800, 278, '_elementor_template_type', 'wp-page'),
(2801, 278, '_elementor_version', '4.0.1'),
(2802, 278, '_elementor_pro_version', '4.0.1'),
(2803, 278, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(2804, 278, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h3\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h3\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"pp_display_conditions\":[{\"_id\":\"be41540\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(2805, 278, '_elementor_page_settings', 'a:0:{}'),
(2808, 279, '_wp_page_template', 'elementor_header_footer'),
(2810, 279, '_elementor_edit_mode', 'builder'),
(2811, 279, '_elementor_template_type', 'wp-page'),
(2812, 279, '_elementor_version', '4.0.1'),
(2813, 279, '_elementor_pro_version', '4.0.1'),
(2814, 279, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(2815, 279, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Offices\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"pp_display_conditions\":[{\"_id\":\"be41540\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(2927, 289, '_wp_page_template', 'elementor_header_footer'),
(2929, 289, '_elementor_edit_mode', 'builder'),
(2930, 289, '_elementor_template_type', 'wp-page'),
(2931, 289, '_elementor_version', '4.0.1'),
(2932, 289, '_elementor_pro_version', '4.0.1'),
(2933, 289, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(2934, 289, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"pp_display_conditions\":[{\"_id\":\"be41540\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(2830, 280, '_elementor_page_settings', 'a:0:{}'),
(2833, 281, '_wp_page_template', 'elementor_header_footer'),
(2835, 281, '_elementor_edit_mode', 'builder'),
(2836, 281, '_elementor_template_type', 'wp-page'),
(2837, 281, '_elementor_version', '4.0.1'),
(2838, 281, '_elementor_pro_version', '4.0.1'),
(2839, 281, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(2840, 281, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Offices\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"pp_display_conditions\":[{\"_id\":\"be41540\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(2841, 281, '_elementor_page_settings', 'a:0:{}'),
(2846, 282, '_elementor_edit_mode', 'builder'),
(2847, 282, '_elementor_template_type', 'wp-page'),
(2848, 282, '_elementor_version', '4.0.1'),
(2849, 282, '_elementor_pro_version', '4.0.1'),
(2850, 282, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2851, 282, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"pp_display_conditions\":[{\"_id\":\"be41540\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(2965, 292, '_elementor_edit_mode', 'builder'),
(2966, 292, '_elementor_template_type', 'wp-page'),
(2967, 292, '_elementor_version', '4.0.1'),
(2968, 292, '_elementor_pro_version', '4.0.1'),
(2969, 292, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(2970, 292, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}]},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2866, 283, '_elementor_page_settings', 'a:0:{}'),
(4584, 428, '_elementor_page_settings', 'a:0:{}'),
(4617, 432, '_wp_page_template', 'elementor_header_footer'),
(4618, 432, '_elementor_edit_mode', 'builder'),
(4619, 432, '_elementor_template_type', 'wp-page'),
(4587, 429, '_wp_page_template', 'elementor_header_footer'),
(4588, 429, '_elementor_edit_mode', 'builder'),
(4589, 429, '_elementor_template_type', 'wp-page'),
(4590, 429, '_elementor_version', '4.0.1'),
(4591, 429, '_elementor_pro_version', '4.0.1'),
(4592, 429, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4593, 429, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a55114e\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"758369f\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2868, 284, '_wp_page_template', 'elementor_header_footer'),
(2869, 284, '_elementor_edit_mode', 'builder'),
(2870, 284, '_elementor_template_type', 'wp-page'),
(2871, 284, '_elementor_version', '4.0.1'),
(2872, 284, '_elementor_pro_version', '4.0.1'),
(2873, 284, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2874, 284, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"115da5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5575eb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"39f99fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58f02ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d6f9cf\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2876, 284, '_elementor_page_settings', 'a:0:{}'),
(4573, 427, '_elementor_page_settings', 'a:0:{}'),
(4576, 428, '_wp_page_template', 'elementor_header_footer'),
(4577, 428, '_elementor_edit_mode', 'builder'),
(4578, 428, '_elementor_template_type', 'wp-page'),
(4579, 428, '_elementor_version', '4.0.1'),
(4580, 428, '_elementor_pro_version', '4.0.1'),
(4581, 428, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4582, 428, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"758369f\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4621, 432, '_elementor_pro_version', '4.0.1'),
(4599, 430, '_wp_page_template', 'elementor_header_footer'),
(4600, 430, '_elementor_edit_mode', 'builder'),
(4601, 430, '_elementor_template_type', 'wp-page'),
(4602, 430, '_elementor_version', '4.0.1'),
(4603, 430, '_elementor_pro_version', '4.0.1'),
(4604, 430, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4605, 430, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a55114e\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"758369f\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4607, 430, '_elementor_page_settings', 'a:0:{}'),
(4608, 431, '_wp_page_template', 'elementor_header_footer'),
(4609, 431, '_elementor_edit_mode', 'builder'),
(4610, 431, '_elementor_template_type', 'wp-page'),
(4611, 431, '_elementor_version', '4.0.1'),
(4612, 431, '_elementor_pro_version', '4.0.1'),
(4613, 431, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4614, 431, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a55114e\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"758369f\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4616, 431, '_elementor_page_settings', 'a:0:{}'),
(4622, 432, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4623, 432, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a55114e\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4688, 438, '_wp_page_template', 'elementor_header_footer'),
(4666, 436, '_wp_page_template', 'elementor_header_footer'),
(4667, 436, '_elementor_edit_mode', 'builder'),
(4668, 436, '_elementor_template_type', 'wp-page'),
(4669, 436, '_elementor_version', '4.0.1'),
(4670, 436, '_elementor_pro_version', '4.0.1'),
(4671, 436, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4672, 436, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a55114e\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3825, 364, '_wp_page_template', 'elementor_header_footer'),
(3826, 364, '_elementor_edit_mode', 'builder'),
(3827, 364, '_elementor_template_type', 'wp-page'),
(3828, 364, '_elementor_version', '4.0.1'),
(3829, 364, '_elementor_pro_version', '4.0.1'),
(3830, 364, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3831, 364, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"115da5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5575eb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"39f99fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58f02ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d6f9cf\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2899, 286, '_elementor_page_settings', 'a:0:{}'),
(4522, 14, '_elementor_page_settings', 'a:0:{}'),
(4523, 14, '_elementor_controls_usage', 'a:3:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:19:\"section_form_fields\";a:3:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;}s:15:\"section_buttons\";a:2:{s:12:\"button_width\";i:1;s:11:\"button_text\";i:1;}s:13:\"section_email\";a:5:{s:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:14:\"email_reply_to\";i:1;s:13:\"form_metadata\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:5:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:13:\"label_spacing\";i:1;s:27:\"label_typography_typography\";i:1;s:28:\"label_typography_font_weight\";i:1;}s:19:\"section_field_style\";a:3:{s:22:\"field_background_color\";i:1;s:18:\"field_border_color\";i:1;s:18:\"field_border_width\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:3:{s:13:\"content_width\";i:1;s:5:\"width\";i:1;s:14:\"flex_direction\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:2:{s:7:\"padding\";i:2;s:16:\"_flex_align_self\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:1;s:18:\"animation_duration\";i:1;}}}}}'),
(4498, 421, '_elementor_page_settings', 'a:0:{}'),
(4501, 422, '_wp_page_template', 'elementor_header_footer'),
(4502, 422, '_elementor_edit_mode', 'builder'),
(4503, 422, '_elementor_template_type', 'wp-page'),
(4504, 422, '_elementor_version', '4.0.1'),
(4505, 422, '_elementor_pro_version', '4.0.1'),
(4506, 422, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4507, 422, '_elementor_data', '[{\"id\":\"2ade5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d450ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5442f27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1169960\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"288836e\"}]},\"elements\":[{\"id\":\"5b600b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCFAF7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e42b8ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"46a79e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d3921e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"25\",\"bottom\":\"65\",\"left\":\"25\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82857f2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"76d4aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refer A Patient\",\"pp_display_conditions\":[{\"_id\":\"67a04ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4577\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Refer A Patient\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name of Referring Dentist\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"4b403a7\"},{\"custom_id\":\"field_9f0a1ef\",\"field_label\":\" Name of Patient\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"9f0a1ef\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Referring Dentist Email\",\"width\":\"50\",\"_id\":\"e55b5cf\"},{\"custom_id\":\"field_b9e0909\",\"field_type\":\"date\",\"required\":\"true\",\"field_label\":\"Patient DOB\",\"width\":\"50\",\"_id\":\"b9e0909\"},{\"custom_id\":\"field_27bf4e1\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Patient Contact Number\",\"_id\":\"27bf4e1\"},{\"custom_id\":\"field_2ad7288\",\"required\":\"true\",\"field_label\":\"Reason for Referral\",\"_id\":\"2ad7288\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"caceca2\"},{\"custom_id\":\"field_0befd21\",\"field_type\":\"html\",\"field_label\":\"Referring to\",\"field_html\":\"Referring to\",\"_id\":\"0befd21\"},{\"custom_id\":\"field_adedc74\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Bobby Birdi (Periodontist\\/Prosthodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"adedc74\"},{\"custom_id\":\"field_36ddb89\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Maher Dadoush (Periodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"36ddb89\"},{\"custom_id\":\"field_5984a51\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Nariman Amiri (Prosthodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"5984a51\"},{\"custom_id\":\"field_56c5b46\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Peter Munns (Periodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"56c5b46\"}],\"input_size\":\"md\",\"button_width\":\"30\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Refer A Patient - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF00\",\"field_border_color\":\"#0000001F\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd6bf5e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4509, 422, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4535, 424, '_elementor_page_settings', 'a:0:{}'),
(4538, 425, '_wp_page_template', 'elementor_header_footer'),
(4539, 425, '_elementor_edit_mode', 'builder'),
(4540, 425, '_elementor_template_type', 'wp-page'),
(4541, 425, '_elementor_version', '4.0.1'),
(4542, 425, '_elementor_pro_version', '4.0.1'),
(4543, 425, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4544, 425, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}],\"css_classes\":\"form_style\",\"custom_css\":\"\\/*.form_style .elementor-field-option a:hover{*\\/\\n\\/*    color:#0B6623;*\\/\\n\\/*    text-decoration: underline;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"<span style=\\\"font-size:13px;font-style: italic;\\\"> Includes examination and, if needed, X-rays. One-time offer for new patients booking online. Treatment not included. <a href=\\\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjM5MiIsInRvZ2dsZSI6ZmFsc2V9\\\">Terms apply.<\\/a>\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4546, 425, '_elementor_page_settings', 'a:0:{}'),
(4550, 426, '_elementor_edit_mode', 'builder'),
(4551, 426, '_elementor_template_type', 'wp-page'),
(4552, 426, '_elementor_version', '4.0.1'),
(4553, 426, '_elementor_pro_version', '4.0.1'),
(4554, 426, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4555, 426, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}],\"css_classes\":\"form_style\",\"custom_css\":\"\\/*.form_style .elementor-field-option a:hover{*\\/\\n\\/*    color:#0B6623;*\\/\\n\\/*    text-decoration: underline;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment at one of our following locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"<span style=\\\"font-size:13px;font-style: italic;\\\"> Includes examination and, if needed, X-rays. One-time offer for new patients booking online. Treatment not included. <a href=\\\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjM5MiIsInRvZ2dsZSI6ZmFsc2V9\\\">Terms apply.<\\/a>\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2902, 287, '_wp_page_template', 'elementor_header_footer'),
(2903, 287, '_elementor_edit_mode', 'builder'),
(2904, 287, '_elementor_template_type', 'wp-page'),
(2905, 287, '_elementor_version', '4.0.1'),
(2906, 287, '_elementor_pro_version', '4.0.1'),
(2907, 287, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2908, 287, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"115da5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5575eb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"39f99fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58f02ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d6f9cf\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2910, 287, '_elementor_page_settings', 'a:0:{}'),
(4549, 426, '_wp_page_template', 'elementor_header_footer'),
(4527, 424, '_wp_page_template', 'elementor_header_footer'),
(4528, 424, '_elementor_edit_mode', 'builder'),
(4529, 424, '_elementor_template_type', 'wp-page'),
(4530, 424, '_elementor_version', '4.0.1'),
(4531, 424, '_elementor_pro_version', '4.0.1'),
(4532, 424, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4533, 424, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}],\"css_classes\":\"form_style\",\"custom_css\":\"\\/*.form_style .elementor-field-option a:hover{*\\/\\n\\/*    color:#0B6623;*\\/\\n\\/*    text-decoration: underline;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"<span style=\\\"font-size:13px;font-style: italic;\\\"> Includes examination and, if needed, X-rays. One-time offer for new patients booking online. Treatment not included. <a href=\\\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjM5MiIsInRvZ2dsZSI6ZmFsc2V9\\\">Terms apply.<\\/a>\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4559, 12, '_elementor_page_settings', 'a:0:{}'),
(4560, 12, '_elementor_controls_usage', 'a:4:{s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:4;s:11:\"header_size\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:2;s:10:\"link_click\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:2;}s:18:\"section_icon_style\";a:1:{s:16:\"icon_color_hover\";i:2;}s:18:\"section_text_style\";a:1:{s:16:\"text_color_hover\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:3;s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:1;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:3;}}s:8:\"advanced\";a:4:{s:14:\"section_layout\";a:2:{s:7:\"padding\";i:3;s:11:\"css_classes\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:19:\"section_form_fields\";a:3:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;}s:15:\"section_buttons\";a:1:{s:11:\"button_text\";i:1;}s:13:\"section_email\";a:4:{s:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:13:\"form_metadata\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:2:{s:27:\"label_typography_typography\";i:1;s:28:\"label_typography_font_weight\";i:1;}s:19:\"section_field_style\";a:3:{s:22:\"field_background_color\";i:1;s:18:\"field_border_color\";i:1;s:18:\"field_border_width\";i:1;}s:20:\"section_button_style\";a:2:{s:26:\"previous_button_text_color\";i:1;s:18:\"button_hover_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(4490, 421, '_wp_page_template', 'elementor_header_footer'),
(4491, 421, '_elementor_edit_mode', 'builder'),
(4492, 421, '_elementor_template_type', 'wp-page'),
(4493, 421, '_elementor_version', '4.0.1'),
(4494, 421, '_elementor_pro_version', '4.0.1'),
(4495, 421, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4496, 421, '_elementor_data', '[{\"id\":\"2ade5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d450ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5442f27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1169960\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"288836e\"}]},\"elements\":[{\"id\":\"5b600b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCFAF7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e42b8ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"46a79e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d3921e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"25\",\"bottom\":\"65\",\"left\":\"25\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82857f2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"76d4aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refer A Patient\",\"pp_display_conditions\":[{\"_id\":\"67a04ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4577\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Refer A Patient\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name of Referring Dentist\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"4b403a7\"},{\"custom_id\":\"field_9f0a1ef\",\"field_label\":\" Name of Patient\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"9f0a1ef\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Referring Dentist Email\",\"width\":\"50\",\"_id\":\"e55b5cf\"},{\"custom_id\":\"field_b9e0909\",\"field_type\":\"date\",\"required\":\"true\",\"field_label\":\"Patient DOB\",\"width\":\"50\",\"_id\":\"b9e0909\"},{\"custom_id\":\"field_27bf4e1\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Patient Contact Number\",\"_id\":\"27bf4e1\"},{\"custom_id\":\"field_2ad7288\",\"required\":\"true\",\"field_label\":\"Reason for Referral\",\"_id\":\"2ad7288\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"caceca2\"},{\"custom_id\":\"field_0befd21\",\"field_type\":\"html\",\"field_label\":\"Referring to\",\"field_html\":\"Referring to\",\"_id\":\"0befd21\"},{\"custom_id\":\"field_adedc74\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Bobby Birdi (Periodontist\\/Prosthodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"adedc74\"},{\"custom_id\":\"field_36ddb89\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Maher Dadoush (Periodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"36ddb89\"},{\"custom_id\":\"field_5984a51\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Nariman Amiri (Prosthodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"5984a51\"},{\"custom_id\":\"field_56c5b46\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Peter Munns (Periodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"56c5b46\"}],\"input_size\":\"md\",\"button_width\":\"30\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Refer A Patient - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF00\",\"field_border_color\":\"#0000001F\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd6bf5e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4526, 14, '__elementor_forms_snapshot', '[{\"id\":\"e3d4577\",\"name\":\"Refer A Patient\",\"fields\":[{\"id\":\"name\",\"type\":\"text\",\"label\":\"Name of Referring Dentist\"},{\"id\":\"field_9f0a1ef\",\"type\":\"text\",\"label\":\" Name of Patient\"},{\"id\":\"email\",\"type\":\"email\",\"label\":\"Referring Dentist Email\"},{\"id\":\"field_b9e0909\",\"type\":\"date\",\"label\":\"Patient DOB\"},{\"id\":\"field_27bf4e1\",\"type\":\"tel\",\"label\":\"Patient Contact Number\"},{\"id\":\"field_2ad7288\",\"type\":\"text\",\"label\":\"Reason for Referral\"},{\"id\":\"message\",\"type\":\"textarea\",\"label\":\"Message\"},{\"id\":\"field_adedc74\",\"type\":\"checkbox\",\"label\":\"\",\"options\":[\"BC Perio Vancouver office\",\"BC Perio Coquitlam office\"]}]}]'),
(4461, 418, '_elementor_page_settings', 'a:0:{}'),
(4465, 419, '_wp_page_template', 'elementor_header_footer'),
(4466, 419, '_elementor_edit_mode', 'builder'),
(4467, 419, '_elementor_template_type', 'wp-page'),
(4468, 419, '_elementor_version', '4.0.1'),
(4469, 419, '_elementor_pro_version', '4.0.1'),
(4470, 419, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4471, 419, '_elementor_data', '[{\"id\":\"2ade5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d450ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5442f27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1169960\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"288836e\"}]},\"elements\":[{\"id\":\"5b600b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCFAF7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e42b8ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"46a79e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d3921e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"25\",\"bottom\":\"65\",\"left\":\"25\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82857f2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"76d4aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refer A Patient\",\"pp_display_conditions\":[{\"_id\":\"67a04ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4577\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Refer A Patient\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name of Referring Dentist\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"4b403a7\"},{\"custom_id\":\"field_9f0a1ef\",\"field_label\":\" Name of Patient\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"9f0a1ef\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Referring Dentist Email\",\"width\":\"50\",\"_id\":\"e55b5cf\"},{\"custom_id\":\"field_b9e0909\",\"field_type\":\"date\",\"required\":\"true\",\"field_label\":\"Patient DOB\",\"width\":\"50\",\"_id\":\"b9e0909\"},{\"custom_id\":\"field_27bf4e1\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Patient Contact Number\",\"_id\":\"27bf4e1\"},{\"custom_id\":\"field_2ad7288\",\"required\":\"true\",\"field_label\":\"Reason for Referral\",\"_id\":\"2ad7288\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"caceca2\"},{\"custom_id\":\"field_0befd21\",\"field_type\":\"html\",\"field_label\":\"Referring to\",\"field_html\":\"Referring to\",\"_id\":\"0befd21\"},{\"custom_id\":\"field_adedc74\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Bobby Birdi (Periodontist\\/Prosthodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"adedc74\"},{\"custom_id\":\"field_36ddb89\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Maher Dadoush (Periodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"36ddb89\"},{\"custom_id\":\"field_5984a51\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Nariman Amiri (Prosthodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"5984a51\"},{\"custom_id\":\"field_56c5b46\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Peter Munns (Periodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"56c5b46\"}],\"input_size\":\"md\",\"button_width\":\"30\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Refer A Patient - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF00\",\"field_border_color\":\"#0000001F\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd6bf5e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4472, 419, '_elementor_page_settings', 'a:0:{}'),
(2913, 288, '_wp_page_template', 'elementor_header_footer'),
(2914, 288, '_elementor_edit_mode', 'builder'),
(2915, 288, '_elementor_template_type', 'wp-page'),
(2916, 288, '_elementor_version', '4.0.1'),
(2917, 288, '_elementor_pro_version', '4.0.1'),
(2918, 288, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2919, 288, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"115da5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5575eb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"39f99fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58f02ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d6f9cf\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4257, 400, '_wp_page_template', 'elementor_header_footer'),
(4258, 400, '_elementor_edit_mode', 'builder'),
(4259, 400, '_elementor_template_type', 'wp-page'),
(4260, 400, '_elementor_version', '4.0.1'),
(4261, 400, '_elementor_pro_version', '4.0.1'),
(4262, 400, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4263, 400, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"<span style=\\\"font-size:13px;font-style: italic;\\\"> Includes examination and, if needed, X-rays. One-time offer for new patients booking online. Treatment not included. <a href=\\\"elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjM5MiIsInRvZ2dsZSI6ZmFsc2V9\\\">Terms apply.<\\/a>\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4265, 400, '_elementor_page_settings', 'a:0:{}'),
(4269, 401, '_elementor_edit_mode', 'builder'),
(4270, 401, '_elementor_template_type', 'wp-page'),
(4271, 401, '_elementor_version', '4.0.1'),
(4272, 401, '_elementor_pro_version', '4.0.1'),
(4273, 401, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4274, 401, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"<span style=\\\"font-size:13px;font-style: italic;\\\"> Includes examination and, if needed, X-rays. One-time offer for new patients booking online. Treatment not included. <a href=\\\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjM5MiIsInRvZ2dsZSI6ZmFsc2V9\\\">Terms apply.<\\/a>\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4366, 409, '_elementor_edit_mode', 'builder'),
(4367, 409, '_elementor_template_type', 'wp-page'),
(4368, 409, '_elementor_version', '4.0.1'),
(4369, 409, '_elementor_pro_version', '4.0.1'),
(4370, 409, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4371, 409, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}],\"custom_css\":\".elementor-field-option a:hover{\\n    color:red;\\n    \\n}\"},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"<span style=\\\"font-size:13px;font-style: italic;\\\"> Includes examination and, if needed, X-rays. One-time offer for new patients booking online. Treatment not included. <a href=\\\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjM5MiIsInRvZ2dsZSI6ZmFsc2V9\\\">Terms apply.<\\/a>\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4289, 402, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4305, 403, '_elementor_page_settings', 'a:0:{}'),
(4308, 404, '_wp_page_template', 'elementor_header_footer'),
(4309, 404, '_elementor_edit_mode', 'builder'),
(4310, 404, '_elementor_template_type', 'wp-page'),
(4311, 404, '_elementor_version', '4.0.1'),
(4312, 404, '_elementor_pro_version', '4.0.1'),
(4313, 404, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4314, 404, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"<span style=\\\"font-size:13px;font-style: italic;\\\"> Includes examination and, if needed, X-rays. One-time offer for new patients booking online. Treatment not included. <a href=\\\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjM5MiIsInRvZ2dsZSI6ZmFsc2V9\\\">Terms apply.<\\/a>\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4316, 404, '_elementor_page_settings', 'a:0:{}'),
(2935, 289, '_elementor_page_settings', 'a:0:{}'),
(2938, 290, '_wp_page_template', 'elementor_header_footer'),
(2940, 290, '_elementor_edit_mode', 'builder'),
(2941, 290, '_elementor_template_type', 'wp-page'),
(2942, 290, '_elementor_version', '4.0.1'),
(2943, 290, '_elementor_pro_version', '4.0.1'),
(2944, 290, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(2945, 290, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"pp_display_conditions\":[{\"_id\":\"be41540\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(2946, 290, '_elementor_page_settings', 'a:0:{}'),
(2949, 291, '_wp_page_template', 'elementor_header_footer'),
(2951, 291, '_elementor_edit_mode', 'builder'),
(2952, 291, '_elementor_template_type', 'wp-page'),
(2953, 291, '_elementor_version', '4.0.1'),
(2954, 291, '_elementor_pro_version', '4.0.1'),
(2955, 291, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2956, 291, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}]},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3021, 297, '_wp_page_template', 'elementor_header_footer'),
(2999, 295, '_wp_page_template', 'elementor_header_footer'),
(3001, 295, '_elementor_edit_mode', 'builder'),
(3002, 295, '_elementor_template_type', 'wp-page'),
(3003, 295, '_elementor_version', '4.0.1'),
(3004, 295, '_elementor_pro_version', '4.0.1'),
(3005, 295, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3006, 295, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3071, 301, '_wp_page_template', 'elementor_header_footer'),
(3215, 313, '_wp_page_template', 'elementor_header_footer'),
(3287, 319, '_wp_page_template', 'elementor_header_footer'),
(3472, 334, '_elementor_page_settings', 'a:0:{}'),
(3473, 335, '_wp_page_template', 'elementor_header_footer'),
(3475, 335, '_elementor_edit_mode', 'builder'),
(3476, 335, '_elementor_template_type', 'wp-page'),
(3477, 335, '_elementor_version', '4.0.1'),
(3478, 335, '_elementor_pro_version', '4.0.1'),
(3479, 335, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3480, 335, '_elementor_data', '[{\"id\":\"2ade5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d450ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5442f27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1169960\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"288836e\"}]},\"elements\":[{\"id\":\"5b600b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCFAF7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e42b8ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"46a79e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d3921e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82857f2\"}]},\"elements\":[{\"id\":\"76d4aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refer A Patient\",\"pp_display_conditions\":[{\"_id\":\"67a04ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(3481, 335, '_elementor_page_settings', 'a:0:{}'),
(2971, 292, '_elementor_page_settings', 'a:0:{}'),
(2974, 293, '_wp_page_template', 'elementor_header_footer'),
(2976, 293, '_elementor_edit_mode', 'builder'),
(2977, 293, '_elementor_template_type', 'wp-page'),
(2978, 293, '_elementor_version', '4.0.1'),
(2979, 293, '_elementor_pro_version', '4.0.1'),
(2980, 293, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(2981, 293, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}]},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2982, 293, '_elementor_page_settings', 'a:0:{}'),
(4350, 407, '_elementor_page_settings', 'a:0:{}'),
(2985, 294, '_wp_page_template', 'elementor_header_footer'),
(2987, 294, '_elementor_edit_mode', 'builder'),
(2988, 294, '_elementor_template_type', 'wp-page'),
(2989, 294, '_elementor_version', '4.0.1'),
(2990, 294, '_elementor_pro_version', '4.0.1'),
(2991, 294, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(2992, 294, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4342, 407, '_wp_page_template', 'elementor_header_footer'),
(4343, 407, '_elementor_edit_mode', 'builder'),
(4344, 407, '_elementor_template_type', 'wp-page'),
(4345, 407, '_elementor_version', '4.0.1'),
(4346, 407, '_elementor_pro_version', '4.0.1'),
(4347, 407, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4348, 407, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"758369f\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3035, 298, '_wp_page_template', 'elementor_header_footer'),
(3037, 298, '_elementor_edit_mode', 'builder'),
(3038, 298, '_elementor_template_type', 'wp-page'),
(3039, 298, '_elementor_version', '4.0.1'),
(3040, 298, '_elementor_pro_version', '4.0.1'),
(3041, 298, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3042, 298, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3107, 304, '_wp_page_template', 'elementor_header_footer'),
(3251, 316, '_wp_page_template', 'elementor_header_footer'),
(3323, 322, '_wp_page_template', 'elementor_header_footer'),
(3007, 295, '_elementor_page_settings', 'a:0:{}'),
(3010, 296, '_wp_page_template', 'elementor_header_footer'),
(3012, 296, '_elementor_edit_mode', 'builder'),
(3013, 296, '_elementor_template_type', 'wp-page'),
(3014, 296, '_elementor_version', '4.0.1'),
(3015, 296, '_elementor_pro_version', '4.0.1'),
(3016, 296, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3017, 296, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3018, 296, '_elementor_page_settings', 'a:0:{}'),
(3023, 297, '_elementor_edit_mode', 'builder'),
(3024, 297, '_elementor_template_type', 'wp-page'),
(3025, 297, '_elementor_version', '4.0.1'),
(3026, 297, '_elementor_pro_version', '4.0.1'),
(3027, 297, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3028, 297, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3073, 301, '_elementor_edit_mode', 'builder'),
(3074, 301, '_elementor_template_type', 'wp-page'),
(3075, 301, '_elementor_version', '4.0.1');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3076, 301, '_elementor_pro_version', '4.0.1'),
(3077, 301, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3078, 301, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3043, 298, '_elementor_page_settings', 'a:0:{}'),
(3046, 299, '_wp_page_template', 'elementor_header_footer'),
(3048, 299, '_elementor_edit_mode', 'builder'),
(3049, 299, '_elementor_template_type', 'wp-page'),
(3050, 299, '_elementor_version', '4.0.1'),
(3051, 299, '_elementor_pro_version', '4.0.1'),
(3052, 299, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3053, 299, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3054, 299, '_elementor_page_settings', 'a:0:{}'),
(3057, 300, '_wp_page_template', 'elementor_header_footer'),
(3059, 300, '_elementor_edit_mode', 'builder'),
(3060, 300, '_elementor_template_type', 'wp-page'),
(3061, 300, '_elementor_version', '4.0.1'),
(3062, 300, '_elementor_pro_version', '4.0.1'),
(3063, 300, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3064, 300, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3129, 306, '_wp_page_template', 'elementor_header_footer'),
(3109, 304, '_elementor_edit_mode', 'builder'),
(3110, 304, '_elementor_template_type', 'wp-page'),
(3111, 304, '_elementor_version', '4.0.1'),
(3112, 304, '_elementor_pro_version', '4.0.1'),
(3113, 304, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3114, 304, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3079, 301, '_elementor_page_settings', 'a:0:{}'),
(4339, 406, '_elementor_page_settings', 'a:0:{}'),
(3082, 302, '_wp_page_template', 'elementor_header_footer'),
(3084, 302, '_elementor_edit_mode', 'builder'),
(3085, 302, '_elementor_template_type', 'wp-page'),
(3086, 302, '_elementor_version', '4.0.1'),
(3087, 302, '_elementor_pro_version', '4.0.1'),
(3088, 302, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3089, 302, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3090, 302, '_elementor_page_settings', 'a:0:{}'),
(3093, 303, '_wp_page_template', 'elementor_header_footer'),
(3095, 303, '_elementor_edit_mode', 'builder'),
(3096, 303, '_elementor_template_type', 'wp-page'),
(3097, 303, '_elementor_version', '4.0.1'),
(3098, 303, '_elementor_pro_version', '4.0.1'),
(3099, 303, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3100, 303, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3165, 309, '_wp_page_template', 'elementor_header_footer'),
(3143, 307, '_wp_page_template', 'elementor_header_footer'),
(3145, 307, '_elementor_edit_mode', 'builder'),
(3146, 307, '_elementor_template_type', 'wp-page'),
(3147, 307, '_elementor_version', '4.0.1'),
(3148, 307, '_elementor_pro_version', '4.0.1'),
(3149, 307, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3150, 307, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3115, 304, '_elementor_page_settings', 'a:0:{}'),
(3118, 305, '_wp_page_template', 'elementor_header_footer'),
(3120, 305, '_elementor_edit_mode', 'builder'),
(3121, 305, '_elementor_template_type', 'wp-page'),
(3122, 305, '_elementor_version', '4.0.1'),
(3123, 305, '_elementor_pro_version', '4.0.1'),
(3124, 305, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3125, 305, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3126, 305, '_elementor_page_settings', 'a:0:{}'),
(3131, 306, '_elementor_edit_mode', 'builder'),
(3132, 306, '_elementor_template_type', 'wp-page'),
(3133, 306, '_elementor_version', '4.0.1'),
(3134, 306, '_elementor_pro_version', '4.0.1'),
(3135, 306, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3136, 306, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3179, 310, '_wp_page_template', 'elementor_header_footer'),
(3181, 310, '_elementor_edit_mode', 'builder'),
(3182, 310, '_elementor_template_type', 'wp-page'),
(3183, 310, '_elementor_version', '4.0.1'),
(3184, 310, '_elementor_pro_version', '4.0.1'),
(3185, 310, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3186, 310, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3151, 307, '_elementor_page_settings', 'a:0:{}'),
(3154, 308, '_wp_page_template', 'elementor_header_footer'),
(3156, 308, '_elementor_edit_mode', 'builder'),
(3157, 308, '_elementor_template_type', 'wp-page'),
(3158, 308, '_elementor_version', '4.0.1'),
(3159, 308, '_elementor_pro_version', '4.0.1'),
(3160, 308, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3161, 308, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3162, 308, '_elementor_page_settings', 'a:0:{}'),
(3167, 309, '_elementor_edit_mode', 'builder'),
(3168, 309, '_elementor_template_type', 'wp-page'),
(3169, 309, '_elementor_version', '4.0.1'),
(3170, 309, '_elementor_pro_version', '4.0.1'),
(3171, 309, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3172, 309, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3217, 313, '_elementor_edit_mode', 'builder'),
(3218, 313, '_elementor_template_type', 'wp-page'),
(3219, 313, '_elementor_version', '4.0.1'),
(3220, 313, '_elementor_pro_version', '4.0.1'),
(3221, 313, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3222, 313, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3187, 310, '_elementor_page_settings', 'a:0:{}'),
(3190, 311, '_wp_page_template', 'elementor_header_footer'),
(3192, 311, '_elementor_edit_mode', 'builder'),
(3193, 311, '_elementor_template_type', 'wp-page'),
(3194, 311, '_elementor_version', '4.0.1'),
(3195, 311, '_elementor_pro_version', '4.0.1'),
(3196, 311, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3197, 311, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3198, 311, '_elementor_page_settings', 'a:0:{}'),
(3201, 312, '_wp_page_template', 'elementor_header_footer'),
(3203, 312, '_elementor_edit_mode', 'builder'),
(3204, 312, '_elementor_template_type', 'wp-page'),
(3205, 312, '_elementor_version', '4.0.1'),
(3206, 312, '_elementor_pro_version', '4.0.1'),
(3207, 312, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3208, 312, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3253, 316, '_elementor_edit_mode', 'builder'),
(3254, 316, '_elementor_template_type', 'wp-page'),
(3255, 316, '_elementor_version', '4.0.1'),
(3256, 316, '_elementor_pro_version', '4.0.1'),
(3257, 316, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3258, 316, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3223, 313, '_elementor_page_settings', 'a:0:{}'),
(3226, 314, '_wp_page_template', 'elementor_header_footer'),
(3228, 314, '_elementor_edit_mode', 'builder'),
(3229, 314, '_elementor_template_type', 'wp-page'),
(3230, 314, '_elementor_version', '4.0.1'),
(3231, 314, '_elementor_pro_version', '4.0.1'),
(3232, 314, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3233, 314, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3234, 314, '_elementor_page_settings', 'a:0:{}'),
(3237, 315, '_wp_page_template', 'elementor_header_footer'),
(3239, 315, '_elementor_edit_mode', 'builder'),
(3240, 315, '_elementor_template_type', 'wp-page'),
(3241, 315, '_elementor_version', '4.0.1'),
(3242, 315, '_elementor_pro_version', '4.0.1'),
(3243, 315, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3244, 315, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3289, 319, '_elementor_edit_mode', 'builder'),
(3290, 319, '_elementor_template_type', 'wp-page'),
(3291, 319, '_elementor_version', '4.0.1'),
(3292, 319, '_elementor_pro_version', '4.0.1'),
(3293, 319, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3294, 319, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3259, 316, '_elementor_page_settings', 'a:0:{}'),
(3262, 317, '_wp_page_template', 'elementor_header_footer'),
(3264, 317, '_elementor_edit_mode', 'builder'),
(3265, 317, '_elementor_template_type', 'wp-page'),
(3266, 317, '_elementor_version', '4.0.1'),
(3267, 317, '_elementor_pro_version', '4.0.1'),
(3268, 317, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3269, 317, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3270, 317, '_elementor_page_settings', 'a:0:{}'),
(3273, 318, '_wp_page_template', 'elementor_header_footer'),
(3275, 318, '_elementor_edit_mode', 'builder'),
(3276, 318, '_elementor_template_type', 'wp-page'),
(3277, 318, '_elementor_version', '4.0.1'),
(3278, 318, '_elementor_pro_version', '4.0.1'),
(3279, 318, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3280, 318, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3914, 372, '_elementor_version', '4.0.1'),
(3915, 372, '_elementor_pro_version', '4.0.1'),
(3916, 372, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3917, 372, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Appointment\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact me \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3325, 322, '_elementor_edit_mode', 'builder'),
(3326, 322, '_elementor_template_type', 'wp-page'),
(3327, 322, '_elementor_version', '4.0.1'),
(3328, 322, '_elementor_pro_version', '4.0.1'),
(3329, 322, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3330, 322, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3295, 319, '_elementor_page_settings', 'a:0:{}'),
(3298, 320, '_wp_page_template', 'elementor_header_footer'),
(3300, 320, '_elementor_edit_mode', 'builder'),
(3301, 320, '_elementor_template_type', 'wp-page'),
(3302, 320, '_elementor_version', '4.0.1'),
(3303, 320, '_elementor_pro_version', '4.0.1'),
(3304, 320, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3305, 320, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}]},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3306, 320, '_elementor_page_settings', 'a:0:{}'),
(3309, 321, '_wp_page_template', 'elementor_header_footer'),
(3311, 321, '_elementor_edit_mode', 'builder'),
(3312, 321, '_elementor_template_type', 'wp-page'),
(3313, 321, '_elementor_version', '4.0.1'),
(3314, 321, '_elementor_pro_version', '4.0.1'),
(3315, 321, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3316, 321, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3843, 365, '_elementor_page_settings', 'a:0:{}'),
(3913, 372, '_elementor_template_type', 'wp-page'),
(3359, 325, '_wp_page_template', 'elementor_header_footer'),
(3361, 325, '_elementor_edit_mode', 'builder'),
(3362, 325, '_elementor_template_type', 'wp-page'),
(3363, 325, '_elementor_version', '4.0.1'),
(3364, 325, '_elementor_pro_version', '4.0.1'),
(3365, 325, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3366, 325, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3331, 322, '_elementor_page_settings', 'a:0:{}'),
(3334, 323, '_wp_page_template', 'elementor_header_footer'),
(3336, 323, '_elementor_edit_mode', 'builder'),
(3337, 323, '_elementor_template_type', 'wp-page'),
(3338, 323, '_elementor_version', '4.0.1'),
(3339, 323, '_elementor_pro_version', '4.0.1'),
(3340, 323, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3341, 323, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3342, 323, '_elementor_page_settings', 'a:0:{}'),
(3345, 324, '_wp_page_template', 'elementor_header_footer'),
(3347, 324, '_elementor_edit_mode', 'builder'),
(3348, 324, '_elementor_template_type', 'wp-page'),
(3349, 324, '_elementor_version', '4.0.1'),
(3350, 324, '_elementor_pro_version', '4.0.1'),
(3351, 324, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3352, 324, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3836, 365, '_wp_page_template', 'elementor_header_footer'),
(3837, 365, '_elementor_edit_mode', 'builder'),
(3838, 365, '_elementor_template_type', 'wp-page'),
(3839, 365, '_elementor_version', '4.0.1'),
(3840, 365, '_elementor_pro_version', '4.0.1'),
(3841, 365, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3842, 365, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"902f836\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cfe7e18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d1a1e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Dr.-Sarah-Alabdullah.jpg\",\"id\":38,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"74cfc15\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"2435170\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91e735c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fc181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"115da5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#DCDCB612\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5575eb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"39f99fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58f02ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d6f9cf\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e332186\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9c7810b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"302ba97\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c39fe38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}]},\"elements\":[{\"id\":\"f3fa827\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"6f597b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e6934\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Veneers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Bridges\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"},{\"text\":\"Implant crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"cd73581\"},{\"text\":\"Implant bridge\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"2b0f92b\"},{\"text\":\"Implant all-on-X\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6a6d160\"},{\"text\":\"Full mouth rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"9dcac02\"},{\"text\":\"Smile makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"f4d6ff3\"},{\"text\":\"Hollywood smile\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0a7077b\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b1ff58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"249805a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"664c947\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9585c33\"}],\"css_classes\":\"service_box_style\",\"pp_display_conditions\":[{\"_id\":\"c1929c3\"}]},\"elements\":[{\"id\":\"37a5f90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"445895d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ebb3d94\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Complete dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"92fe8e1\"},{\"text\":\"Removable partial denture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"0093a9b\"},{\"text\":\"Implant retained complete or partial overdenture\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/check-mark_18359833.svg\",\"id\":126},\"library\":\"svg\"},\"_id\":\"6e27219\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_align\":\"start\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"18045f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3452, 333, '_wp_page_template', 'elementor_header_footer'),
(3430, 331, '_wp_page_template', 'elementor_header_footer'),
(3432, 331, '_elementor_edit_mode', 'builder'),
(3433, 331, '_elementor_template_type', 'wp-page'),
(3434, 331, '_elementor_version', '4.0.1'),
(3435, 331, '_elementor_pro_version', '4.0.1'),
(3436, 331, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3437, 331, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3367, 325, '_elementor_page_settings', 'a:0:{}'),
(3370, 326, '_wp_page_template', 'elementor_header_footer'),
(3372, 326, '_elementor_edit_mode', 'builder'),
(3373, 326, '_elementor_template_type', 'wp-page'),
(3374, 326, '_elementor_version', '4.0.1'),
(3375, 326, '_elementor_pro_version', '4.0.1'),
(3376, 326, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3377, 326, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3378, 326, '_elementor_page_settings', 'a:0:{}'),
(3912, 372, '_elementor_edit_mode', 'builder'),
(3381, 327, '_wp_page_template', 'elementor_header_footer'),
(3383, 327, '_elementor_edit_mode', 'builder'),
(3384, 327, '_elementor_template_type', 'wp-page'),
(3385, 327, '_elementor_version', '4.0.1'),
(3386, 327, '_elementor_pro_version', '4.0.1'),
(3387, 327, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3388, 327, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3911, 372, '_wp_page_template', 'elementor_header_footer'),
(3805, 361, '_wp_page_template', 'elementor_header_footer'),
(3783, 359, '_wp_page_template', 'elementor_header_footer'),
(3784, 359, '_elementor_edit_mode', 'builder'),
(3785, 359, '_elementor_template_type', 'wp-page'),
(3786, 359, '_elementor_version', '4.0.1'),
(3787, 359, '_elementor_pro_version', '4.0.1'),
(3788, 359, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3789, 359, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact me \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3395, 14, '_elementor_edit_mode', 'builder'),
(3396, 14, '_astra_content_layout_flag', 'disabled'),
(3397, 14, 'ast-title-bar-display', 'disabled'),
(3398, 14, '_elementor_template_type', 'wp-page'),
(3399, 14, '_elementor_version', '4.0.1'),
(3400, 14, '_elementor_pro_version', '4.0.1'),
(3419, 14, '_elementor_data', '[{\"id\":\"2ade5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d450ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5442f27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1169960\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"288836e\"}]},\"elements\":[{\"id\":\"5b600b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCFAF7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e42b8ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"46a79e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d3921e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"25\",\"bottom\":\"65\",\"left\":\"25\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82857f2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"76d4aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refer A Patient\",\"pp_display_conditions\":[{\"_id\":\"67a04ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4577\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Refer A Patient\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name of Referring Dentist\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"4b403a7\"},{\"custom_id\":\"field_9f0a1ef\",\"field_label\":\" Name of Patient\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"9f0a1ef\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Referring Dentist Email\",\"width\":\"50\",\"_id\":\"e55b5cf\"},{\"custom_id\":\"field_b9e0909\",\"field_type\":\"date\",\"required\":\"true\",\"field_label\":\"Patient DOB\",\"width\":\"50\",\"_id\":\"b9e0909\"},{\"custom_id\":\"field_27bf4e1\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Patient Contact Number\",\"_id\":\"27bf4e1\"},{\"custom_id\":\"field_2ad7288\",\"required\":\"true\",\"field_label\":\"Reason for Referral\",\"_id\":\"2ad7288\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"caceca2\"},{\"custom_id\":\"field_adedc74\",\"field_type\":\"checkbox\",\"field_options\":\"BC Perio Vancouver office\\nBC Perio Coquitlam office\",\"field_html\":\"Referring to\",\"_id\":\"adedc74\"}],\"input_size\":\"md\",\"button_width\":\"30\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Refer A Patient - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF00\",\"field_border_color\":\"#0000001F\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd6bf5e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3402, 14, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3403, 328, '_wp_page_template', 'elementor_header_footer'),
(3405, 328, '_elementor_edit_mode', 'builder'),
(3406, 328, '_elementor_template_type', 'wp-page'),
(3407, 328, '_elementor_version', '4.0.1'),
(3408, 328, '_elementor_pro_version', '4.0.1'),
(3409, 328, '_elementor_page_settings', 'a:0:{}'),
(3410, 328, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3411, 329, '_wp_page_template', 'elementor_header_footer'),
(3413, 329, '_elementor_edit_mode', 'builder'),
(3414, 329, '_elementor_template_type', 'wp-page'),
(3415, 329, '_elementor_version', '4.0.1'),
(3416, 329, '_elementor_pro_version', '4.0.1'),
(3417, 329, '_elementor_page_settings', 'a:0:{}'),
(3418, 329, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3420, 330, '_wp_page_template', 'elementor_header_footer'),
(3422, 330, '_elementor_edit_mode', 'builder'),
(3423, 330, '_elementor_template_type', 'wp-page'),
(3424, 330, '_elementor_version', '4.0.1'),
(3425, 330, '_elementor_pro_version', '4.0.1'),
(3426, 330, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3427, 330, '_elementor_data', '[{\"id\":\"2ade5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d450ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5442f27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1169960\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"288836e\"}]},\"elements\":[{\"id\":\"5b600b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCFAF7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e42b8ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"46a79e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d3921e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82857f2\"}]},\"elements\":[{\"id\":\"76d4aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refer A Patient\",\"pp_display_conditions\":[{\"_id\":\"67a04ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(3464, 334, '_wp_page_template', 'elementor_header_footer'),
(3466, 334, '_elementor_edit_mode', 'builder'),
(3467, 334, '_elementor_template_type', 'wp-page'),
(3468, 334, '_elementor_version', '4.0.1'),
(3469, 334, '_elementor_pro_version', '4.0.1'),
(3470, 334, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3471, 334, '_elementor_data', '[{\"id\":\"2ade5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d450ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5442f27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1169960\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"288836e\"}]},\"elements\":[{\"id\":\"5b600b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCFAF7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e42b8ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"46a79e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d3921e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82857f2\"}]},\"elements\":[{\"id\":\"76d4aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refer A Patient\",\"pp_display_conditions\":[{\"_id\":\"67a04ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(3438, 331, '_elementor_page_settings', 'a:0:{}'),
(3441, 332, '_wp_page_template', 'elementor_header_footer'),
(3443, 332, '_elementor_edit_mode', 'builder'),
(3444, 332, '_elementor_template_type', 'wp-page'),
(3445, 332, '_elementor_version', '4.0.1'),
(3446, 332, '_elementor_pro_version', '4.0.1'),
(3447, 332, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3448, 332, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3449, 332, '_elementor_page_settings', 'a:0:{}'),
(3454, 333, '_elementor_edit_mode', 'builder'),
(3455, 333, '_elementor_template_type', 'wp-page'),
(3456, 333, '_elementor_version', '4.0.1'),
(3457, 333, '_elementor_pro_version', '4.0.1'),
(3458, 333, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3459, 333, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact me \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3500, 337, '_elementor_page_settings', 'a:0:{}'),
(3501, 338, '_wp_page_template', 'elementor_header_footer'),
(3503, 338, '_elementor_edit_mode', 'builder'),
(3504, 338, '_elementor_template_type', 'wp-page'),
(3505, 338, '_elementor_version', '4.0.1'),
(3506, 338, '_elementor_pro_version', '4.0.1'),
(3507, 338, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3508, 338, '_elementor_data', '[{\"id\":\"2ade5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d450ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5442f27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1169960\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"288836e\"}]},\"elements\":[{\"id\":\"5b600b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCFAF7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e42b8ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"46a79e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d3921e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82857f2\"}]},\"elements\":[{\"id\":\"76d4aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refer A Patient\",\"pp_display_conditions\":[{\"_id\":\"67a04ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4577\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name of Referring Dentist\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"4b403a7\"},{\"custom_id\":\"field_9f0a1ef\",\"field_label\":\" Name of Patient\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"9f0a1ef\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Referring Dentist Email\",\"width\":\"50\",\"_id\":\"e55b5cf\"},{\"custom_id\":\"field_b9e0909\",\"field_type\":\"date\",\"required\":\"true\",\"field_label\":\"Patient DOB\",\"width\":\"50\",\"_id\":\"b9e0909\"},{\"custom_id\":\"field_27bf4e1\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Patient Contact Number\",\"_id\":\"27bf4e1\"},{\"custom_id\":\"field_2ad7288\",\"required\":\"true\",\"field_label\":\"Reason for Referral\",\"_id\":\"2ad7288\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"caceca2\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"dd6bf5e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3509, 338, '_elementor_page_settings', 'a:0:{}'),
(3512, 339, '_elementor_edit_mode', 'builder'),
(3513, 339, '_elementor_template_type', 'wp-page'),
(3514, 339, '_elementor_version', '4.0.1'),
(3515, 339, '_elementor_pro_version', '4.0.1'),
(3516, 339, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3517, 339, '_elementor_data', '[{\"id\":\"2ade5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d450ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5442f27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1169960\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"288836e\"}]},\"elements\":[{\"id\":\"5b600b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCFAF7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e42b8ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"46a79e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d3921e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82857f2\"}]},\"elements\":[{\"id\":\"76d4aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refer A Patient\",\"pp_display_conditions\":[{\"_id\":\"67a04ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4577\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Refer A Patient\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name of Referring Dentist\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"4b403a7\"},{\"custom_id\":\"field_9f0a1ef\",\"field_label\":\" Name of Patient\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"9f0a1ef\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Referring Dentist Email\",\"width\":\"50\",\"_id\":\"e55b5cf\"},{\"custom_id\":\"field_b9e0909\",\"field_type\":\"date\",\"required\":\"true\",\"field_label\":\"Patient DOB\",\"width\":\"50\",\"_id\":\"b9e0909\"},{\"custom_id\":\"field_27bf4e1\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Patient Contact Number\",\"_id\":\"27bf4e1\"},{\"custom_id\":\"field_2ad7288\",\"required\":\"true\",\"field_label\":\"Reason for Referral\",\"_id\":\"2ad7288\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"caceca2\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"dd6bf5e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3522, 340, '_wp_page_template', 'elementor_header_footer'),
(3524, 340, '_elementor_edit_mode', 'builder'),
(3525, 340, '_elementor_template_type', 'wp-page'),
(3526, 340, '_elementor_version', '4.0.1'),
(3527, 340, '_elementor_pro_version', '4.0.1'),
(3528, 340, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3529, 340, '_elementor_data', '[{\"id\":\"2ade5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d450ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5442f27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1169960\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"288836e\"}]},\"elements\":[{\"id\":\"5b600b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCFAF7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e42b8ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"46a79e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d3921e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82857f2\"}]},\"elements\":[{\"id\":\"76d4aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refer A Patient\",\"pp_display_conditions\":[{\"_id\":\"67a04ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4577\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Refer A Patient\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name of Referring Dentist\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"4b403a7\"},{\"custom_id\":\"field_9f0a1ef\",\"field_label\":\" Name of Patient\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"9f0a1ef\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Referring Dentist Email\",\"width\":\"50\",\"_id\":\"e55b5cf\"},{\"custom_id\":\"field_b9e0909\",\"field_type\":\"date\",\"required\":\"true\",\"field_label\":\"Patient DOB\",\"width\":\"50\",\"_id\":\"b9e0909\"},{\"custom_id\":\"field_27bf4e1\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Patient Contact Number\",\"_id\":\"27bf4e1\"},{\"custom_id\":\"field_2ad7288\",\"required\":\"true\",\"field_label\":\"Reason for Referral\",\"_id\":\"2ad7288\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"caceca2\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"dd6bf5e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3558, 343, '_wp_page_template', 'elementor_header_footer'),
(3560, 343, '_elementor_edit_mode', 'builder'),
(3561, 343, '_elementor_template_type', 'wp-page'),
(3562, 343, '_elementor_version', '4.0.1'),
(3563, 343, '_elementor_pro_version', '4.0.1'),
(3564, 343, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3565, 343, '_elementor_data', '[{\"id\":\"2ade5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d450ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5442f27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1169960\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"288836e\"}]},\"elements\":[{\"id\":\"5b600b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCFAF7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e42b8ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"46a79e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d3921e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82857f2\"}]},\"elements\":[{\"id\":\"76d4aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refer A Patient\",\"pp_display_conditions\":[{\"_id\":\"67a04ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4577\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Refer A Patient\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name of Referring Dentist\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"4b403a7\"},{\"custom_id\":\"field_9f0a1ef\",\"field_label\":\" Name of Patient\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"9f0a1ef\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Referring Dentist Email\",\"width\":\"50\",\"_id\":\"e55b5cf\"},{\"custom_id\":\"field_b9e0909\",\"field_type\":\"date\",\"required\":\"true\",\"field_label\":\"Patient DOB\",\"width\":\"50\",\"_id\":\"b9e0909\"},{\"custom_id\":\"field_27bf4e1\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Patient Contact Number\",\"_id\":\"27bf4e1\"},{\"custom_id\":\"field_2ad7288\",\"required\":\"true\",\"field_label\":\"Reason for Referral\",\"_id\":\"2ad7288\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"caceca2\"},{\"custom_id\":\"field_0befd21\",\"field_type\":\"html\",\"field_label\":\"Referring to\",\"field_html\":\"Referring to\",\"_id\":\"0befd21\"},{\"custom_id\":\"field_adedc74\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Bobby Birdi (Periodontist\\/Prosthodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"adedc74\"},{\"custom_id\":\"field_36ddb89\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Maher Dadoush (Periodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"36ddb89\"},{\"custom_id\":\"field_5984a51\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Nariman Amiri (Prosthodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"5984a51\"},{\"custom_id\":\"field_56c5b46\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Peter Munns (Periodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"56c5b46\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"dd6bf5e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3630, 349, '_wp_page_template', 'elementor_header_footer'),
(3530, 340, '_elementor_page_settings', 'a:0:{}'),
(3533, 341, '_wp_page_template', 'elementor_header_footer'),
(3535, 341, '_elementor_edit_mode', 'builder'),
(3536, 341, '_elementor_template_type', 'wp-page'),
(3537, 341, '_elementor_version', '4.0.1'),
(3538, 341, '_elementor_pro_version', '4.0.1'),
(3539, 341, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3540, 341, '_elementor_data', '[{\"id\":\"2ade5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d450ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5442f27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1169960\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"288836e\"}]},\"elements\":[{\"id\":\"5b600b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCFAF7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e42b8ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"46a79e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d3921e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82857f2\"}]},\"elements\":[{\"id\":\"76d4aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refer A Patient\",\"pp_display_conditions\":[{\"_id\":\"67a04ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4577\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Refer A Patient\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name of Referring Dentist\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"4b403a7\"},{\"custom_id\":\"field_9f0a1ef\",\"field_label\":\" Name of Patient\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"9f0a1ef\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Referring Dentist Email\",\"width\":\"50\",\"_id\":\"e55b5cf\"},{\"custom_id\":\"field_b9e0909\",\"field_type\":\"date\",\"required\":\"true\",\"field_label\":\"Patient DOB\",\"width\":\"50\",\"_id\":\"b9e0909\"},{\"custom_id\":\"field_27bf4e1\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Patient Contact Number\",\"_id\":\"27bf4e1\"},{\"custom_id\":\"field_2ad7288\",\"required\":\"true\",\"field_label\":\"Reason for Referral\",\"_id\":\"2ad7288\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"caceca2\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"dd6bf5e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3541, 341, '_elementor_page_settings', 'a:0:{}'),
(3544, 342, '_wp_page_template', 'elementor_header_footer'),
(3546, 342, '_elementor_edit_mode', 'builder'),
(3547, 342, '_elementor_template_type', 'wp-page'),
(3548, 342, '_elementor_version', '4.0.1'),
(3549, 342, '_elementor_pro_version', '4.0.1'),
(3550, 342, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3551, 342, '_elementor_data', '[{\"id\":\"2ade5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d450ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5442f27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1169960\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"288836e\"}]},\"elements\":[{\"id\":\"5b600b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCFAF7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e42b8ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"46a79e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d3921e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82857f2\"}]},\"elements\":[{\"id\":\"76d4aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refer A Patient\",\"pp_display_conditions\":[{\"_id\":\"67a04ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4577\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Refer A Patient\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name of Referring Dentist\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"4b403a7\"},{\"custom_id\":\"field_9f0a1ef\",\"field_label\":\" Name of Patient\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"9f0a1ef\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Referring Dentist Email\",\"width\":\"50\",\"_id\":\"e55b5cf\"},{\"custom_id\":\"field_b9e0909\",\"field_type\":\"date\",\"required\":\"true\",\"field_label\":\"Patient DOB\",\"width\":\"50\",\"_id\":\"b9e0909\"},{\"custom_id\":\"field_27bf4e1\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Patient Contact Number\",\"_id\":\"27bf4e1\"},{\"custom_id\":\"field_2ad7288\",\"required\":\"true\",\"field_label\":\"Reason for Referral\",\"_id\":\"2ad7288\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"caceca2\"},{\"custom_id\":\"field_0befd21\",\"field_type\":\"html\",\"field_label\":\"Referring to\",\"field_html\":\"Referring to\",\"_id\":\"0befd21\"},{\"custom_id\":\"field_adedc74\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Bobby Birdi (Periodontist\\/Prosthodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"adedc74\"},{\"custom_id\":\"field_36ddb89\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Maher Dadoush (Periodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"36ddb89\"},{\"custom_id\":\"field_5984a51\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Nariman Amiri (Prosthodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"5984a51\"},{\"custom_id\":\"field_56c5b46\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Peter Munns (Periodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"56c5b46\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"dd6bf5e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4515, 423, '_elementor_version', '4.0.1'),
(3594, 346, '_wp_page_template', 'elementor_header_footer'),
(3596, 346, '_elementor_edit_mode', 'builder'),
(3597, 346, '_elementor_template_type', 'wp-page'),
(3598, 346, '_elementor_version', '4.0.1'),
(3599, 346, '_elementor_pro_version', '4.0.1'),
(3600, 346, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3601, 346, '_elementor_data', '[{\"id\":\"2ade5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d450ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5442f27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1169960\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"288836e\"}]},\"elements\":[{\"id\":\"5b600b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCFAF7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e42b8ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"46a79e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d3921e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82857f2\"}]},\"elements\":[{\"id\":\"76d4aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refer A Patient\",\"pp_display_conditions\":[{\"_id\":\"67a04ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4577\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Refer A Patient\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name of Referring Dentist\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"4b403a7\"},{\"custom_id\":\"field_9f0a1ef\",\"field_label\":\" Name of Patient\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"9f0a1ef\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Referring Dentist Email\",\"width\":\"50\",\"_id\":\"e55b5cf\"},{\"custom_id\":\"field_b9e0909\",\"field_type\":\"date\",\"required\":\"true\",\"field_label\":\"Patient DOB\",\"width\":\"50\",\"_id\":\"b9e0909\"},{\"custom_id\":\"field_27bf4e1\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Patient Contact Number\",\"_id\":\"27bf4e1\"},{\"custom_id\":\"field_2ad7288\",\"required\":\"true\",\"field_label\":\"Reason for Referral\",\"_id\":\"2ad7288\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"caceca2\"},{\"custom_id\":\"field_0befd21\",\"field_type\":\"html\",\"field_label\":\"Referring to\",\"field_html\":\"Referring to\",\"_id\":\"0befd21\"},{\"custom_id\":\"field_adedc74\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Bobby Birdi (Periodontist\\/Prosthodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"adedc74\"},{\"custom_id\":\"field_36ddb89\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Maher Dadoush (Periodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"36ddb89\"},{\"custom_id\":\"field_5984a51\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Nariman Amiri (Prosthodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"5984a51\"},{\"custom_id\":\"field_56c5b46\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Peter Munns (Periodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"56c5b46\"}],\"input_size\":\"md\",\"button_width\":\"30\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF00\",\"field_border_color\":\"#0000001F\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd6bf5e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3666, 352, '_wp_page_template', 'elementor_header_footer'),
(4319, 405, '_wp_page_template', 'elementor_header_footer'),
(4320, 405, '_elementor_edit_mode', 'builder'),
(4321, 405, '_elementor_template_type', 'wp-page'),
(4322, 405, '_elementor_version', '4.0.1'),
(4323, 405, '_elementor_pro_version', '4.0.1'),
(4324, 405, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4325, 405, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}],\"custom_css\":\".elementor-field-option a:hover{\\n    color:red;\\n    \\n}\"},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your complimentary consultation\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Book Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"<span style=\\\"font-size:13px;font-style: italic;\\\"> Includes examination and, if needed, X-rays. One-time offer for new patients booking online. Treatment not included. <a href=\\\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjM5MiIsInRvZ2dsZSI6ZmFsc2V9\\\">Terms apply.<\\/a>\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3566, 343, '_elementor_page_settings', 'a:0:{}'),
(3569, 344, '_wp_page_template', 'elementor_header_footer'),
(3571, 344, '_elementor_edit_mode', 'builder'),
(3572, 344, '_elementor_template_type', 'wp-page'),
(3573, 344, '_elementor_version', '4.0.1'),
(3574, 344, '_elementor_pro_version', '4.0.1'),
(3575, 344, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3576, 344, '_elementor_data', '[{\"id\":\"2ade5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d450ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5442f27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1169960\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"288836e\"}]},\"elements\":[{\"id\":\"5b600b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCFAF7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e42b8ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"46a79e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d3921e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82857f2\"}]},\"elements\":[{\"id\":\"76d4aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refer A Patient\",\"pp_display_conditions\":[{\"_id\":\"67a04ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4577\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Refer A Patient\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name of Referring Dentist\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"4b403a7\"},{\"custom_id\":\"field_9f0a1ef\",\"field_label\":\" Name of Patient\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"9f0a1ef\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Referring Dentist Email\",\"width\":\"50\",\"_id\":\"e55b5cf\"},{\"custom_id\":\"field_b9e0909\",\"field_type\":\"date\",\"required\":\"true\",\"field_label\":\"Patient DOB\",\"width\":\"50\",\"_id\":\"b9e0909\"},{\"custom_id\":\"field_27bf4e1\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Patient Contact Number\",\"_id\":\"27bf4e1\"},{\"custom_id\":\"field_2ad7288\",\"required\":\"true\",\"field_label\":\"Reason for Referral\",\"_id\":\"2ad7288\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"caceca2\"},{\"custom_id\":\"field_0befd21\",\"field_type\":\"html\",\"field_label\":\"Referring to\",\"field_html\":\"Referring to\",\"_id\":\"0befd21\"},{\"custom_id\":\"field_adedc74\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Bobby Birdi (Periodontist\\/Prosthodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"adedc74\"},{\"custom_id\":\"field_36ddb89\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Maher Dadoush (Periodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"36ddb89\"},{\"custom_id\":\"field_5984a51\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Nariman Amiri (Prosthodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"5984a51\"},{\"custom_id\":\"field_56c5b46\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Peter Munns (Periodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"56c5b46\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"dd6bf5e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3577, 344, '_elementor_page_settings', 'a:0:{}'),
(3832, 364, '_elementor_page_settings', 'a:0:{}'),
(4516, 423, '_elementor_pro_version', '4.0.1'),
(4517, 423, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4518, 423, '_elementor_data', '[{\"id\":\"2ade5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d450ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5442f27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1169960\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"288836e\"}]},\"elements\":[{\"id\":\"5b600b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCFAF7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e42b8ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"46a79e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d3921e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"25\",\"bottom\":\"65\",\"left\":\"25\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82857f2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"76d4aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refer A Patient\",\"pp_display_conditions\":[{\"_id\":\"67a04ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4577\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Refer A Patient\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name of Referring Dentist\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"4b403a7\"},{\"custom_id\":\"field_9f0a1ef\",\"field_label\":\" Name of Patient\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"9f0a1ef\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Referring Dentist Email\",\"width\":\"50\",\"_id\":\"e55b5cf\"},{\"custom_id\":\"field_b9e0909\",\"field_type\":\"date\",\"required\":\"true\",\"field_label\":\"Patient DOB\",\"width\":\"50\",\"_id\":\"b9e0909\"},{\"custom_id\":\"field_27bf4e1\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Patient Contact Number\",\"_id\":\"27bf4e1\"},{\"custom_id\":\"field_2ad7288\",\"required\":\"true\",\"field_label\":\"Reason for Referral\",\"_id\":\"2ad7288\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"caceca2\"},{\"custom_id\":\"field_adedc74\",\"field_type\":\"checkbox\",\"field_options\":\"BC Perio Vancouver office\\nBC Perio Coquitlam office\",\"field_html\":\"Referring to\",\"_id\":\"adedc74\"}],\"input_size\":\"md\",\"button_width\":\"30\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Refer A Patient - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF00\",\"field_border_color\":\"#0000001F\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd6bf5e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3580, 345, '_wp_page_template', 'elementor_header_footer'),
(3582, 345, '_elementor_edit_mode', 'builder'),
(3583, 345, '_elementor_template_type', 'wp-page'),
(3584, 345, '_elementor_version', '4.0.1'),
(3585, 345, '_elementor_pro_version', '4.0.1'),
(3586, 345, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3587, 345, '_elementor_data', '[{\"id\":\"2ade5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d450ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5442f27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1169960\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"288836e\"}]},\"elements\":[{\"id\":\"5b600b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCFAF7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e42b8ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"46a79e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d3921e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82857f2\"}]},\"elements\":[{\"id\":\"76d4aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refer A Patient\",\"pp_display_conditions\":[{\"_id\":\"67a04ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4577\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Refer A Patient\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name of Referring Dentist\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"4b403a7\"},{\"custom_id\":\"field_9f0a1ef\",\"field_label\":\" Name of Patient\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"9f0a1ef\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Referring Dentist Email\",\"width\":\"50\",\"_id\":\"e55b5cf\"},{\"custom_id\":\"field_b9e0909\",\"field_type\":\"date\",\"required\":\"true\",\"field_label\":\"Patient DOB\",\"width\":\"50\",\"_id\":\"b9e0909\"},{\"custom_id\":\"field_27bf4e1\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Patient Contact Number\",\"_id\":\"27bf4e1\"},{\"custom_id\":\"field_2ad7288\",\"required\":\"true\",\"field_label\":\"Reason for Referral\",\"_id\":\"2ad7288\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"caceca2\"},{\"custom_id\":\"field_0befd21\",\"field_type\":\"html\",\"field_label\":\"Referring to\",\"field_html\":\"Referring to\",\"_id\":\"0befd21\"},{\"custom_id\":\"field_adedc74\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Bobby Birdi (Periodontist\\/Prosthodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"adedc74\"},{\"custom_id\":\"field_36ddb89\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Maher Dadoush (Periodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"36ddb89\"},{\"custom_id\":\"field_5984a51\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Nariman Amiri (Prosthodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"5984a51\"},{\"custom_id\":\"field_56c5b46\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Peter Munns (Periodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"56c5b46\"}],\"input_size\":\"md\",\"button_width\":\"30\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF00\",\"field_border_color\":\"#0000001F\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd6bf5e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4514, 423, '_elementor_template_type', 'wp-page'),
(3632, 349, '_elementor_edit_mode', 'builder'),
(3633, 349, '_elementor_template_type', 'wp-page'),
(3634, 349, '_elementor_version', '4.0.1'),
(3635, 349, '_elementor_pro_version', '4.0.1'),
(3636, 349, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3637, 349, '_elementor_data', '[{\"id\":\"2ade5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d450ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5442f27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1169960\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"288836e\"}]},\"elements\":[{\"id\":\"5b600b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCFAF7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e42b8ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"46a79e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d3921e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82857f2\"}]},\"elements\":[{\"id\":\"76d4aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refer A Patient\",\"pp_display_conditions\":[{\"_id\":\"67a04ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4577\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Refer A Patient\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name of Referring Dentist\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"4b403a7\"},{\"custom_id\":\"field_9f0a1ef\",\"field_label\":\" Name of Patient\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"9f0a1ef\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Referring Dentist Email\",\"width\":\"50\",\"_id\":\"e55b5cf\"},{\"custom_id\":\"field_b9e0909\",\"field_type\":\"date\",\"required\":\"true\",\"field_label\":\"Patient DOB\",\"width\":\"50\",\"_id\":\"b9e0909\"},{\"custom_id\":\"field_27bf4e1\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Patient Contact Number\",\"_id\":\"27bf4e1\"},{\"custom_id\":\"field_2ad7288\",\"required\":\"true\",\"field_label\":\"Reason for Referral\",\"_id\":\"2ad7288\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"caceca2\"},{\"custom_id\":\"field_0befd21\",\"field_type\":\"html\",\"field_label\":\"Referring to\",\"field_html\":\"Referring to\",\"_id\":\"0befd21\"},{\"custom_id\":\"field_adedc74\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Bobby Birdi (Periodontist\\/Prosthodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"adedc74\"},{\"custom_id\":\"field_36ddb89\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Maher Dadoush (Periodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"36ddb89\"},{\"custom_id\":\"field_5984a51\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Nariman Amiri (Prosthodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"5984a51\"},{\"custom_id\":\"field_56c5b46\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Peter Munns (Periodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"56c5b46\"}],\"input_size\":\"md\",\"button_width\":\"30\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF00\",\"field_border_color\":\"#0000001F\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd6bf5e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3602, 346, '_elementor_page_settings', 'a:0:{}'),
(3605, 347, '_wp_page_template', 'elementor_header_footer'),
(3607, 347, '_elementor_edit_mode', 'builder'),
(3608, 347, '_elementor_template_type', 'wp-page'),
(3609, 347, '_elementor_version', '4.0.1'),
(3610, 347, '_elementor_pro_version', '4.0.1'),
(3611, 347, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3612, 347, '_elementor_data', '[{\"id\":\"2ade5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d450ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5442f27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1169960\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"288836e\"}]},\"elements\":[{\"id\":\"5b600b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCFAF7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e42b8ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"46a79e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d3921e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82857f2\"}]},\"elements\":[{\"id\":\"76d4aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refer A Patient\",\"pp_display_conditions\":[{\"_id\":\"67a04ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4577\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Refer A Patient\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name of Referring Dentist\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"4b403a7\"},{\"custom_id\":\"field_9f0a1ef\",\"field_label\":\" Name of Patient\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"9f0a1ef\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Referring Dentist Email\",\"width\":\"50\",\"_id\":\"e55b5cf\"},{\"custom_id\":\"field_b9e0909\",\"field_type\":\"date\",\"required\":\"true\",\"field_label\":\"Patient DOB\",\"width\":\"50\",\"_id\":\"b9e0909\"},{\"custom_id\":\"field_27bf4e1\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Patient Contact Number\",\"_id\":\"27bf4e1\"},{\"custom_id\":\"field_2ad7288\",\"required\":\"true\",\"field_label\":\"Reason for Referral\",\"_id\":\"2ad7288\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"caceca2\"},{\"custom_id\":\"field_0befd21\",\"field_type\":\"html\",\"field_label\":\"Referring to\",\"field_html\":\"Referring to\",\"_id\":\"0befd21\"},{\"custom_id\":\"field_adedc74\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Bobby Birdi (Periodontist\\/Prosthodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"adedc74\"},{\"custom_id\":\"field_36ddb89\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Maher Dadoush (Periodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"36ddb89\"},{\"custom_id\":\"field_5984a51\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Nariman Amiri (Prosthodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"5984a51\"},{\"custom_id\":\"field_56c5b46\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Peter Munns (Periodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"56c5b46\"}],\"input_size\":\"md\",\"button_width\":\"30\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF00\",\"field_border_color\":\"#0000001F\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd6bf5e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3613, 347, '_elementor_page_settings', 'a:0:{}'),
(3616, 348, '_wp_page_template', 'elementor_header_footer'),
(3618, 348, '_elementor_edit_mode', 'builder'),
(3619, 348, '_elementor_template_type', 'wp-page'),
(3620, 348, '_elementor_version', '4.0.1'),
(3621, 348, '_elementor_pro_version', '4.0.1'),
(3622, 348, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3623, 348, '_elementor_data', '[{\"id\":\"2ade5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d450ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5442f27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1169960\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"288836e\"}]},\"elements\":[{\"id\":\"5b600b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCFAF7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e42b8ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"46a79e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d3921e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82857f2\"}]},\"elements\":[{\"id\":\"76d4aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refer A Patient\",\"pp_display_conditions\":[{\"_id\":\"67a04ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4577\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Refer A Patient\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name of Referring Dentist\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"4b403a7\"},{\"custom_id\":\"field_9f0a1ef\",\"field_label\":\" Name of Patient\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"9f0a1ef\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Referring Dentist Email\",\"width\":\"50\",\"_id\":\"e55b5cf\"},{\"custom_id\":\"field_b9e0909\",\"field_type\":\"date\",\"required\":\"true\",\"field_label\":\"Patient DOB\",\"width\":\"50\",\"_id\":\"b9e0909\"},{\"custom_id\":\"field_27bf4e1\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Patient Contact Number\",\"_id\":\"27bf4e1\"},{\"custom_id\":\"field_2ad7288\",\"required\":\"true\",\"field_label\":\"Reason for Referral\",\"_id\":\"2ad7288\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"caceca2\"},{\"custom_id\":\"field_0befd21\",\"field_type\":\"html\",\"field_label\":\"Referring to\",\"field_html\":\"Referring to\",\"_id\":\"0befd21\"},{\"custom_id\":\"field_adedc74\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Bobby Birdi (Periodontist\\/Prosthodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"adedc74\"},{\"custom_id\":\"field_36ddb89\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Maher Dadoush (Periodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"36ddb89\"},{\"custom_id\":\"field_5984a51\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Nariman Amiri (Prosthodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"5984a51\"},{\"custom_id\":\"field_56c5b46\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Peter Munns (Periodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"56c5b46\"}],\"input_size\":\"md\",\"button_width\":\"30\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF00\",\"field_border_color\":\"#0000001F\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd6bf5e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3668, 352, '_elementor_edit_mode', 'builder'),
(3669, 352, '_elementor_template_type', 'wp-page'),
(3670, 352, '_elementor_version', '4.0.1'),
(3671, 352, '_elementor_pro_version', '4.0.1'),
(3672, 352, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3673, 352, '_elementor_data', '[{\"id\":\"2ade5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d450ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5442f27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1169960\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"288836e\"}]},\"elements\":[{\"id\":\"5b600b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCFAF7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e42b8ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"46a79e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d3921e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82857f2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"76d4aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refer A Patient\",\"pp_display_conditions\":[{\"_id\":\"67a04ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4577\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Refer A Patient\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name of Referring Dentist\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"4b403a7\"},{\"custom_id\":\"field_9f0a1ef\",\"field_label\":\" Name of Patient\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"9f0a1ef\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Referring Dentist Email\",\"width\":\"50\",\"_id\":\"e55b5cf\"},{\"custom_id\":\"field_b9e0909\",\"field_type\":\"date\",\"required\":\"true\",\"field_label\":\"Patient DOB\",\"width\":\"50\",\"_id\":\"b9e0909\"},{\"custom_id\":\"field_27bf4e1\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Patient Contact Number\",\"_id\":\"27bf4e1\"},{\"custom_id\":\"field_2ad7288\",\"required\":\"true\",\"field_label\":\"Reason for Referral\",\"_id\":\"2ad7288\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"caceca2\"},{\"custom_id\":\"field_0befd21\",\"field_type\":\"html\",\"field_label\":\"Referring to\",\"field_html\":\"Referring to\",\"_id\":\"0befd21\"},{\"custom_id\":\"field_adedc74\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Bobby Birdi (Periodontist\\/Prosthodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"adedc74\"},{\"custom_id\":\"field_36ddb89\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Maher Dadoush (Periodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"36ddb89\"},{\"custom_id\":\"field_5984a51\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Nariman Amiri (Prosthodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"5984a51\"},{\"custom_id\":\"field_56c5b46\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Peter Munns (Periodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"56c5b46\"}],\"input_size\":\"md\",\"button_width\":\"30\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Refer A Patient - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF00\",\"field_border_color\":\"#0000001F\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd6bf5e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3638, 349, '_elementor_page_settings', 'a:0:{}'),
(4035, 382, '_wp_page_template', 'elementor_header_footer'),
(4013, 380, '_wp_page_template', 'elementor_header_footer'),
(4014, 380, '_elementor_edit_mode', 'builder'),
(4015, 380, '_elementor_template_type', 'wp-page'),
(4016, 380, '_elementor_version', '4.0.1'),
(4017, 380, '_elementor_pro_version', '4.0.1'),
(4018, 380, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4019, 380, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Appointment\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact me \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3819, 362, '_wp_trash_meta_status', 'publish'),
(3820, 362, '_wp_trash_meta_time', '1775541723'),
(3821, 363, '_wp_trash_meta_status', 'publish'),
(3822, 363, '_wp_trash_meta_time', '1775541817'),
(3641, 350, '_wp_page_template', 'elementor_header_footer'),
(3643, 350, '_elementor_edit_mode', 'builder'),
(3644, 350, '_elementor_template_type', 'wp-page'),
(3645, 350, '_elementor_version', '4.0.1'),
(3646, 350, '_elementor_pro_version', '4.0.1'),
(3647, 350, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3648, 350, '_elementor_data', '[{\"id\":\"2ade5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d450ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5442f27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1169960\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"288836e\"}]},\"elements\":[{\"id\":\"5b600b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCFAF7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e42b8ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"46a79e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d3921e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82857f2\"}]},\"elements\":[{\"id\":\"76d4aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refer A Patient\",\"pp_display_conditions\":[{\"_id\":\"67a04ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4577\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Refer A Patient\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name of Referring Dentist\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"4b403a7\"},{\"custom_id\":\"field_9f0a1ef\",\"field_label\":\" Name of Patient\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"9f0a1ef\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Referring Dentist Email\",\"width\":\"50\",\"_id\":\"e55b5cf\"},{\"custom_id\":\"field_b9e0909\",\"field_type\":\"date\",\"required\":\"true\",\"field_label\":\"Patient DOB\",\"width\":\"50\",\"_id\":\"b9e0909\"},{\"custom_id\":\"field_27bf4e1\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Patient Contact Number\",\"_id\":\"27bf4e1\"},{\"custom_id\":\"field_2ad7288\",\"required\":\"true\",\"field_label\":\"Reason for Referral\",\"_id\":\"2ad7288\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"caceca2\"},{\"custom_id\":\"field_0befd21\",\"field_type\":\"html\",\"field_label\":\"Referring to\",\"field_html\":\"Referring to\",\"_id\":\"0befd21\"},{\"custom_id\":\"field_adedc74\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Bobby Birdi (Periodontist\\/Prosthodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"adedc74\"},{\"custom_id\":\"field_36ddb89\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Maher Dadoush (Periodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"36ddb89\"},{\"custom_id\":\"field_5984a51\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Nariman Amiri (Prosthodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"5984a51\"},{\"custom_id\":\"field_56c5b46\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Peter Munns (Periodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"56c5b46\"}],\"input_size\":\"md\",\"button_width\":\"30\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF00\",\"field_border_color\":\"#0000001F\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd6bf5e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3649, 350, '_elementor_page_settings', 'a:0:{}'),
(4513, 423, '_elementor_edit_mode', 'builder'),
(3652, 351, '_wp_page_template', 'elementor_header_footer'),
(3654, 351, '_elementor_edit_mode', 'builder'),
(3655, 351, '_elementor_template_type', 'wp-page'),
(3656, 351, '_elementor_version', '4.0.1'),
(3657, 351, '_elementor_pro_version', '4.0.1'),
(3658, 351, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3659, 351, '_elementor_data', '[{\"id\":\"2ade5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d450ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5442f27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1169960\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"288836e\"}]},\"elements\":[{\"id\":\"5b600b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCFAF7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e42b8ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"46a79e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d3921e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82857f2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"76d4aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refer A Patient\",\"pp_display_conditions\":[{\"_id\":\"67a04ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4577\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Refer A Patient\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name of Referring Dentist\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"4b403a7\"},{\"custom_id\":\"field_9f0a1ef\",\"field_label\":\" Name of Patient\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"9f0a1ef\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Referring Dentist Email\",\"width\":\"50\",\"_id\":\"e55b5cf\"},{\"custom_id\":\"field_b9e0909\",\"field_type\":\"date\",\"required\":\"true\",\"field_label\":\"Patient DOB\",\"width\":\"50\",\"_id\":\"b9e0909\"},{\"custom_id\":\"field_27bf4e1\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Patient Contact Number\",\"_id\":\"27bf4e1\"},{\"custom_id\":\"field_2ad7288\",\"required\":\"true\",\"field_label\":\"Reason for Referral\",\"_id\":\"2ad7288\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"caceca2\"},{\"custom_id\":\"field_0befd21\",\"field_type\":\"html\",\"field_label\":\"Referring to\",\"field_html\":\"Referring to\",\"_id\":\"0befd21\"},{\"custom_id\":\"field_adedc74\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Bobby Birdi (Periodontist\\/Prosthodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"adedc74\"},{\"custom_id\":\"field_36ddb89\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Maher Dadoush (Periodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"36ddb89\"},{\"custom_id\":\"field_5984a51\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Nariman Amiri (Prosthodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"5984a51\"},{\"custom_id\":\"field_56c5b46\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Peter Munns (Periodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"56c5b46\"}],\"input_size\":\"md\",\"button_width\":\"30\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Refer A Patient - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF00\",\"field_border_color\":\"#0000001F\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd6bf5e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4476, 420, '_wp_page_template', 'elementor_header_footer'),
(4454, 418, '_wp_page_template', 'elementor_header_footer'),
(4455, 418, '_elementor_edit_mode', 'builder'),
(4456, 418, '_elementor_template_type', 'wp-page'),
(4457, 418, '_elementor_version', '4.0.1'),
(4458, 418, '_elementor_pro_version', '4.0.1'),
(4459, 418, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4460, 418, '_elementor_data', '[{\"id\":\"2ade5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d450ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5442f27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1169960\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"288836e\"}]},\"elements\":[{\"id\":\"5b600b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCFAF7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e42b8ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"46a79e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d3921e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"25\",\"bottom\":\"65\",\"left\":\"25\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82857f2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"76d4aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refer A Patient\",\"pp_display_conditions\":[{\"_id\":\"67a04ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4577\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Refer A Patient\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name of Referring Dentist\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"4b403a7\"},{\"custom_id\":\"field_9f0a1ef\",\"field_label\":\" Name of Patient\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"9f0a1ef\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Referring Dentist Email\",\"width\":\"50\",\"_id\":\"e55b5cf\"},{\"custom_id\":\"field_b9e0909\",\"field_type\":\"date\",\"required\":\"true\",\"field_label\":\"Patient DOB\",\"width\":\"50\",\"_id\":\"b9e0909\"},{\"custom_id\":\"field_27bf4e1\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Patient Contact Number\",\"_id\":\"27bf4e1\"},{\"custom_id\":\"field_2ad7288\",\"required\":\"true\",\"field_label\":\"Reason for Referral\",\"_id\":\"2ad7288\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"caceca2\"},{\"custom_id\":\"field_0befd21\",\"field_type\":\"html\",\"field_label\":\"Referring to\",\"field_html\":\"Referring to\",\"_id\":\"0befd21\"},{\"custom_id\":\"field_adedc74\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Bobby Birdi (Periodontist\\/Prosthodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"adedc74\"},{\"custom_id\":\"field_36ddb89\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Maher Dadoush (Periodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"36ddb89\"},{\"custom_id\":\"field_5984a51\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Nariman Amiri (Prosthodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"5984a51\"},{\"custom_id\":\"field_56c5b46\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Peter Munns (Periodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"56c5b46\"}],\"input_size\":\"md\",\"button_width\":\"30\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Refer A Patient - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF00\",\"field_border_color\":\"#0000001F\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd6bf5e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3674, 352, '_elementor_page_settings', 'a:0:{}'),
(3806, 361, '_elementor_edit_mode', 'builder'),
(3807, 361, '_elementor_template_type', 'wp-page'),
(3808, 361, '_elementor_version', '4.0.1'),
(3809, 361, '_elementor_pro_version', '4.0.1'),
(3810, 361, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3811, 361, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Appointment\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact me \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3677, 353, '_wp_page_template', 'elementor_header_footer'),
(3679, 353, '_elementor_edit_mode', 'builder'),
(3680, 353, '_elementor_template_type', 'wp-page'),
(3681, 353, '_elementor_version', '4.0.1'),
(3682, 353, '_elementor_pro_version', '4.0.1'),
(3683, 353, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3684, 353, '_elementor_data', '[{\"id\":\"2ade5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d450ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5442f27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1169960\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"288836e\"}]},\"elements\":[{\"id\":\"5b600b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCFAF7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e42b8ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"46a79e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d3921e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82857f2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"76d4aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refer A Patient\",\"pp_display_conditions\":[{\"_id\":\"67a04ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4577\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Refer A Patient\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name of Referring Dentist\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"4b403a7\"},{\"custom_id\":\"field_9f0a1ef\",\"field_label\":\" Name of Patient\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"9f0a1ef\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Referring Dentist Email\",\"width\":\"50\",\"_id\":\"e55b5cf\"},{\"custom_id\":\"field_b9e0909\",\"field_type\":\"date\",\"required\":\"true\",\"field_label\":\"Patient DOB\",\"width\":\"50\",\"_id\":\"b9e0909\"},{\"custom_id\":\"field_27bf4e1\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Patient Contact Number\",\"_id\":\"27bf4e1\"},{\"custom_id\":\"field_2ad7288\",\"required\":\"true\",\"field_label\":\"Reason for Referral\",\"_id\":\"2ad7288\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"caceca2\"},{\"custom_id\":\"field_0befd21\",\"field_type\":\"html\",\"field_label\":\"Referring to\",\"field_html\":\"Referring to\",\"_id\":\"0befd21\"},{\"custom_id\":\"field_adedc74\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Bobby Birdi (Periodontist\\/Prosthodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"adedc74\"},{\"custom_id\":\"field_36ddb89\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Maher Dadoush (Periodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"36ddb89\"},{\"custom_id\":\"field_5984a51\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Nariman Amiri (Prosthodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"5984a51\"},{\"custom_id\":\"field_56c5b46\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Peter Munns (Periodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"56c5b46\"}],\"input_size\":\"md\",\"button_width\":\"30\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Refer A Patient - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF00\",\"field_border_color\":\"#0000001F\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd6bf5e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3685, 353, '_elementor_page_settings', 'a:0:{}'),
(3801, 360, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4512, 423, '_wp_page_template', 'elementor_header_footer'),
(3688, 354, '_wp_page_template', 'elementor_header_footer'),
(3690, 354, '_elementor_edit_mode', 'builder'),
(3691, 354, '_elementor_template_type', 'wp-page'),
(3692, 354, '_elementor_version', '4.0.1'),
(3693, 354, '_elementor_pro_version', '4.0.1'),
(3694, 354, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3695, 354, '_elementor_data', '[{\"id\":\"2ade5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d450ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5442f27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1169960\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"288836e\"}]},\"elements\":[{\"id\":\"5b600b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCFAF7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e42b8ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"46a79e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d3921e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"25\",\"bottom\":\"65\",\"left\":\"25\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82857f2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"76d4aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refer A Patient\",\"pp_display_conditions\":[{\"_id\":\"67a04ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4577\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Refer A Patient\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name of Referring Dentist\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"4b403a7\"},{\"custom_id\":\"field_9f0a1ef\",\"field_label\":\" Name of Patient\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"9f0a1ef\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Referring Dentist Email\",\"width\":\"50\",\"_id\":\"e55b5cf\"},{\"custom_id\":\"field_b9e0909\",\"field_type\":\"date\",\"required\":\"true\",\"field_label\":\"Patient DOB\",\"width\":\"50\",\"_id\":\"b9e0909\"},{\"custom_id\":\"field_27bf4e1\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Patient Contact Number\",\"_id\":\"27bf4e1\"},{\"custom_id\":\"field_2ad7288\",\"required\":\"true\",\"field_label\":\"Reason for Referral\",\"_id\":\"2ad7288\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"caceca2\"},{\"custom_id\":\"field_0befd21\",\"field_type\":\"html\",\"field_label\":\"Referring to\",\"field_html\":\"Referring to\",\"_id\":\"0befd21\"},{\"custom_id\":\"field_adedc74\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Bobby Birdi (Periodontist\\/Prosthodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"adedc74\"},{\"custom_id\":\"field_36ddb89\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Maher Dadoush (Periodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"36ddb89\"},{\"custom_id\":\"field_5984a51\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Nariman Amiri (Prosthodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"5984a51\"},{\"custom_id\":\"field_56c5b46\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Peter Munns (Periodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"56c5b46\"}],\"input_size\":\"md\",\"button_width\":\"30\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Refer A Patient - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF00\",\"field_border_color\":\"#0000001F\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd6bf5e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3794, 360, '_wp_page_template', 'elementor_header_footer'),
(3795, 360, '_elementor_edit_mode', 'builder'),
(3796, 360, '_elementor_template_type', 'wp-page'),
(3797, 360, '_elementor_version', '4.0.1'),
(3798, 360, '_elementor_pro_version', '4.0.1'),
(3799, 360, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3800, 360, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact me \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4477, 420, '_elementor_edit_mode', 'builder'),
(4478, 420, '_elementor_template_type', 'wp-page'),
(4479, 420, '_elementor_version', '4.0.1'),
(4480, 420, '_elementor_pro_version', '4.0.1'),
(4481, 420, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4482, 420, '_elementor_data', '[{\"id\":\"2ade5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d450ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5442f27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1169960\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"288836e\"}]},\"elements\":[{\"id\":\"5b600b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCFAF7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e42b8ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"46a79e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d3921e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"25\",\"bottom\":\"65\",\"left\":\"25\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82857f2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"76d4aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refer A Patient\",\"pp_display_conditions\":[{\"_id\":\"67a04ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4577\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Refer A Patient\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name of Referring Dentist\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"4b403a7\"},{\"custom_id\":\"field_9f0a1ef\",\"field_label\":\" Name of Patient\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"9f0a1ef\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Referring Dentist Email\",\"width\":\"50\",\"_id\":\"e55b5cf\"},{\"custom_id\":\"field_b9e0909\",\"field_type\":\"date\",\"required\":\"true\",\"field_label\":\"Patient DOB\",\"width\":\"50\",\"_id\":\"b9e0909\"},{\"custom_id\":\"field_27bf4e1\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Patient Contact Number\",\"_id\":\"27bf4e1\"},{\"custom_id\":\"field_2ad7288\",\"required\":\"true\",\"field_label\":\"Reason for Referral\",\"_id\":\"2ad7288\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"caceca2\"},{\"custom_id\":\"field_0befd21\",\"field_type\":\"html\",\"field_label\":\"Referring to\",\"field_html\":\"Referring to\",\"_id\":\"0befd21\"},{\"custom_id\":\"field_adedc74\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Bobby Birdi (Periodontist\\/Prosthodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"adedc74\"},{\"custom_id\":\"field_36ddb89\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Maher Dadoush (Periodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"36ddb89\"},{\"custom_id\":\"field_5984a51\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Nariman Amiri (Prosthodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"5984a51\"},{\"custom_id\":\"field_56c5b46\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Peter Munns (Periodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"56c5b46\"}],\"input_size\":\"md\",\"button_width\":\"30\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Refer A Patient - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF00\",\"field_border_color\":\"#0000001F\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd6bf5e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3790, 359, '_elementor_page_settings', 'a:0:{}'),
(3715, 356, '_elementor_edit_mode', 'builder'),
(3716, 356, '_wp_page_template', 'elementor_header_footer'),
(3718, 356, '_elementor_template_type', 'wp-page'),
(3719, 356, '_elementor_version', '4.0.1'),
(3720, 356, '_elementor_pro_version', '4.0.1'),
(3721, 356, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3722, 356, '_elementor_data', '[{\"id\":\"2ade5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d450ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5442f27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1169960\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"288836e\"}]},\"elements\":[{\"id\":\"5b600b4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCFAF7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e42b8ad\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"46a79e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d3921e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"25\",\"bottom\":\"65\",\"left\":\"25\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82857f2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"76d4aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refer A Patient\",\"pp_display_conditions\":[{\"_id\":\"67a04ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4577\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Refer A Patient\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name of Referring Dentist\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"4b403a7\"},{\"custom_id\":\"field_9f0a1ef\",\"field_label\":\" Name of Patient\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"9f0a1ef\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Referring Dentist Email\",\"width\":\"50\",\"_id\":\"e55b5cf\"},{\"custom_id\":\"field_b9e0909\",\"field_type\":\"date\",\"required\":\"true\",\"field_label\":\"Patient DOB\",\"width\":\"50\",\"_id\":\"b9e0909\"},{\"custom_id\":\"field_27bf4e1\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Patient Contact Number\",\"_id\":\"27bf4e1\"},{\"custom_id\":\"field_2ad7288\",\"required\":\"true\",\"field_label\":\"Reason for Referral\",\"_id\":\"2ad7288\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"caceca2\"},{\"custom_id\":\"field_0befd21\",\"field_type\":\"html\",\"field_label\":\"Referring to\",\"field_html\":\"Referring to\",\"_id\":\"0befd21\"},{\"custom_id\":\"field_adedc74\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Bobby Birdi (Periodontist\\/Prosthodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"adedc74\"},{\"custom_id\":\"field_36ddb89\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Maher Dadoush (Periodontist)\",\"field_options\":\" Vancouver\\n Coquitlam\",\"field_html\":\"Referring to\",\"_id\":\"36ddb89\"},{\"custom_id\":\"field_5984a51\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Nariman Amiri (Prosthodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"5984a51\"},{\"custom_id\":\"field_56c5b46\",\"field_type\":\"checkbox\",\"field_label\":\"Dr. Peter Munns (Periodontist)\",\"field_options\":\" Vancouver\",\"field_html\":\"Referring to\",\"_id\":\"56c5b46\"}],\"input_size\":\"md\",\"button_width\":\"30\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Refer A Patient - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF00\",\"field_border_color\":\"#0000001F\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd6bf5e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3723, 356, '_elementor_page_settings', 'a:0:{}'),
(3724, 356, '_elementor_controls_usage', 'a:3:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:19:\"section_form_fields\";a:3:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;}s:15:\"section_buttons\";a:2:{s:12:\"button_width\";i:1;s:11:\"button_text\";i:1;}s:13:\"section_email\";a:5:{s:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:14:\"email_reply_to\";i:1;s:13:\"form_metadata\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:5:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:13:\"label_spacing\";i:1;s:27:\"label_typography_typography\";i:1;s:28:\"label_typography_font_weight\";i:1;}s:19:\"section_field_style\";a:3:{s:22:\"field_background_color\";i:1;s:18:\"field_border_color\";i:1;s:18:\"field_border_width\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:3:{s:13:\"content_width\";i:1;s:5:\"width\";i:1;s:14:\"flex_direction\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:2:{s:7:\"padding\";i:2;s:16:\"_flex_align_self\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:1;s:18:\"animation_duration\";i:1;}}}}}'),
(3889, 370, '_wp_page_template', 'elementor_header_footer'),
(3890, 370, '_elementor_edit_mode', 'builder'),
(3891, 370, '_elementor_template_type', 'wp-page'),
(3892, 370, '_elementor_version', '4.0.1'),
(3893, 370, '_elementor_pro_version', '4.0.1'),
(3894, 370, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3895, 370, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Appointment\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact me \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3735, 357, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4282, 402, '_elementor_edit_mode', 'builder'),
(4283, 402, '_elementor_template_type', 'footer'),
(4284, 402, '_elementor_version', '4.0.1'),
(4285, 402, '_elementor_pro_version', '4.0.1'),
(4286, 402, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(4287, 402, '_wp_page_template', 'default');
INSERT INTO `wpd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4288, 402, '_elementor_data', '[{\"id\":\"050d7a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f95286\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7a08fdf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fa7fbc0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"245b94a\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"c549993\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5178aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a119aba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb03e1c\"}],\"pp_display_conditions\":[{\"_id\":\"6225907\"}]},\"elements\":[{\"id\":\"48f713c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick link\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d558958\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact Me\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/contact-me\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1906bdb\"},{\"text\":\"Refer a Patient\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/refer-a-patient\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6ff11d1\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c2a7436\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#d2b48c\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\",\"pp_condition_date_time_before_value\":\"2026-04-08 09:29\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor1\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"ef97d44\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e98782c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc78818\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9196257\"}],\"pp_display_conditions\":[{\"_id\":\"c22ad5d\"}]},\"elements\":[{\"id\":\"4cb5137\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca34a69\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"68bada8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbe85e7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8538dde\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"870b784\"}],\"pp_display_conditions\":[{\"_id\":\"c50a849\"}]},\"elements\":[{\"id\":\"9bcc785\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf23c1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2ae9de3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"pp_display_conditions\":[{\"_id\":\"cedb7a1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"a4a465f\\\" name=\\\"popup\\\" settings=\\\"%7B%22popup%22%3A%22392%22%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"25fd49f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#08203EE0\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8ae1206\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cb38fb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fa742f7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"17\",\"bottom\":\"21\",\"left\":\"17\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b69a80d\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"54d74df\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All rights reserved.\",\"header_size\":\"p\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2151eb4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(3867, 367, '_elementor_page_settings', 'a:0:{}'),
(3868, 368, '_wp_page_template', 'elementor_header_footer'),
(3869, 368, '_elementor_edit_mode', 'builder'),
(3870, 368, '_elementor_template_type', 'wp-page'),
(3871, 368, '_elementor_version', '4.0.1'),
(3872, 368, '_elementor_pro_version', '4.0.1'),
(3873, 368, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3874, 368, '_elementor_data', '[{\"id\":\"3c973a7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f32edb1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b394ea0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"db6797b\"}],\"pp_display_conditions\":[{\"_id\":\"d7edafa\"}],\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"92c6737\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f420679\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28dbce3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bb73250\"}],\"pp_display_conditions\":[{\"_id\":\"402c59b\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0000001F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b7d7ce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/Sarah-Alabdullah.jpg\",\"id\":146,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ca2cad0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"382c447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"02eafd0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9342ac0\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"Certified Specialist in\",\"highlighted_text\":\" Prosthodontics\",\"rotating_text\":\"Prosthodontics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"highlighted_text_background_color\":\"#02010100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e36ea89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\",\"words_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36f464a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"60cd419\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#d2b48c\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#d2b48c\",\"border_radius\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"121\",\"bottom\":\"121\",\"left\":\"121\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07a3492\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_border_color\":\"\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"90840de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"382d2fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c82a13b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"548ebd9\"}],\"pp_display_conditions\":[{\"_id\":\"6d8c643\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"bc93c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Sarah Alabdullah\",\"pp_display_conditions\":[{\"_id\":\"2d364b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac5ead\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Specialist in Prosthodontics\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"2e80611\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dab673\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master\\u2019s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.<\\/p><p>Dr. Alabdullah\\u2019s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br \\/><br \\/>Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"81cc852\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"84452c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1207c39\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80cf3de\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"470ef25\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0a20067\"}],\"background_background\":\"classic\",\"background_color\":\"#BAAD9C11\"},\"elements\":[{\"id\":\"f680a2b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"flex_align_items\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c474bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e56ac9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"07afdbd\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e38c494\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e6773e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"My work\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"2e5ead6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8191122\",\"elType\":\"widget\",\"settings\":{\"title\":\"follow me on instagram\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1c5ebdb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf78e26\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0e722b7\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-5.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-7.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"b061e3f\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-2.jpg\",\"id\":113,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"e766361\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-3.jpg\",\"id\":114,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"f5381cb\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-4.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"2df7e96\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-1.jpg\",\"id\":116,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"bd1a835\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work-6.jpg\",\"id\":117,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"fe97551\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/my-work.jpg\",\"id\":118,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"icon\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/dr_sarah_alabdullah\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Get Started\",\"_id\":\"15ad824\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"icon_img_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"410aacc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"471088f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d515d6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"244392a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f64b90b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"service_style\",\"pp_display_conditions\":[{\"_id\":\"e56256f\"}],\"custom_css\":\".service_style .service_box_style .elementor-icon-list-icon{\\n    background: #90EE90;\\n    padding: 5px;\\n}\"},\"elements\":[{\"id\":\"dadcd1c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f1faa49\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"51178ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"063fb3c\"}],\"pp_display_conditions\":[{\"_id\":\"e9767fb\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ed0f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b1232ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e48578\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fixed Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c1802c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Crowns\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-crown_8946301.svg\",\"id\":226},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Veneers\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/veneers_12488995.svg\",\"id\":227},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Bridges\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/mold_2398547.svg\",\"id\":228},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"},{\"title\":\"Implant crowns\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/teeth_17541147.svg\",\"id\":232},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ad77408\"},{\"title\":\"Implant bridge\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_6200449.svg\",\"id\":233},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"70dbb9d\"},{\"title\":\"Implant all-on-X\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/malocclusion_12489207.svg\",\"id\":234},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"175f994\"},{\"title\":\"Full mouth rehabilitation\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/syringe_5285617.svg\",\"id\":235},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"f6a7705\"},{\"title\":\"Smile makeover\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/smile_13635121.svg\",\"id\":236},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b0fad5f\"},{\"title\":\"Hollywood smile\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-care_2581605.svg\",\"id\":248},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0831f86\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"758369f\"}],\"layout\":\"grid\",\"columns\":\"5\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"720b61c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Removable Prosthesis\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c277da7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e2eccc\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Complete dentures\",\"_id\":\"30d1556\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/braces_7335250.svg\",\"id\":249},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Removable partial denture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/dental-bridge_18038707.svg\",\"id\":250},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"93a131c\"},{\"title\":\"Implant retained complete or partial overdenture\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/drsarah\\/wp-content\\/uploads\\/2026\\/04\\/bridge_13935535.svg\",\"id\":251},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"8fb6d4e\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"columns_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#D2B48C11\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4f43cec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3745, 358, '_elementor_edit_mode', 'builder'),
(3746, 358, '_wp_page_template', 'elementor_header_footer'),
(3748, 358, '_elementor_template_type', 'wp-page'),
(3749, 358, '_elementor_version', '4.0.1'),
(3750, 358, '_elementor_pro_version', '4.0.1'),
(3751, 358, '_elementor_migrations_state_d2a1', '4.0.1:9267163a0037ca073f680d6fb269369d'),
(3752, 358, '_elementor_data', '[{\"id\":\"a3db446\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7797e07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3ca4a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79f2209\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"19a08d6\"}]},\"elements\":[{\"id\":\"c4b96e2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D2B48C11\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5de005\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc348b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"051103f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"904d110\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41786c\",\"elType\":\"widget\",\"settings\":{\"title\":\"I Practice at Two Convenient Locations\",\"pp_display_conditions\":[{\"_id\":\"2b3f690\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb1aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Vancouver\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c0761\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#501-777 West Broadway Vancouver, BC V5Z 4J7\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 872-0222\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6048720222\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"96c69ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"BC Perio Coquitlam\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"3b59f18\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cafd3dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"#250 \\u2013 1175 Johnson Street Coquitlam, BC V3B 7K1\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"b575270\",\"link\":{\"url\":\"https:\\/\\/www.google.com\\/maps\\/dir\\/\\/\'\'\\/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info2@bcperio.ca\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info2@bcperio.ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3a879bc\"},{\"text\":\"(604) 936-8244\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:6049368244\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ed0c16\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d9ff7c3\",\"pp_condition_date_time_before_value\":\"2026-04-08 10:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor3\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor3\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_color_hover\":\"#d2b48c\",\"text_color_hover\":\"#d2b48c\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"58a8bba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3a63cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dacffbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ce0d1f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"be41540\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"26909e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me \",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"d46df87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e35882\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact me \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"3ec20bd\"},{\"custom_id\":\"email\",\"required\":\"true\",\"field_label\":\"Last Name\",\"width\":\"50\",\"_id\":\"ad6d4ac\"},{\"custom_id\":\"field_cb05a05\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"cb05a05\"},{\"custom_id\":\"field_ac6fb17\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"ac6fb17\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Notes\",\"_id\":\"26cdac7\"},{\"custom_id\":\"field_11e8d26\",\"field_type\":\"acceptance\",\"required\":\"true\",\"field_options\":\"dhbvjndfbjkn k jkf\",\"_id\":\"11e8d26\",\"acceptance_text\":\"I agree to be contacted for a consultation.\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@drsarah.com\",\"email_subject\":\"Contact Me - Dr. Sarah\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Dr. Sarah\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Dr. Sarah\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Dr. Sarah\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"label_typography_typography\":\"custom\",\"label_typography_font_weight\":\"500\",\"field_background_color\":\"#FFFFFF4D\",\"field_border_color\":\"#736C6C66\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"previous_button_text_color\":\"\",\"button_hover_color\":\"\",\"pp_display_conditions\":[{\"_id\":\"c8dc91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3753, 358, '_elementor_page_settings', 'a:0:{}'),
(3754, 358, '_elementor_controls_usage', 'a:4:{s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:4;s:11:\"header_size\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:2;s:10:\"link_click\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:2;}s:18:\"section_icon_style\";a:1:{s:16:\"icon_color_hover\";i:2;}s:18:\"section_text_style\";a:1:{s:16:\"text_color_hover\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:3;s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:1;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:3;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:3;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:19:\"section_form_fields\";a:3:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;}s:15:\"section_buttons\";a:1:{s:11:\"button_text\";i:1;}s:13:\"section_email\";a:4:{s:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:13:\"form_metadata\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:2:{s:27:\"label_typography_typography\";i:1;s:28:\"label_typography_font_weight\";i:1;}s:19:\"section_field_style\";a:3:{s:22:\"field_background_color\";i:1;s:18:\"field_border_color\";i:1;s:18:\"field_border_width\";i:1;}s:20:\"section_button_style\";a:2:{s:26:\"previous_button_text_color\";i:1;s:18:\"button_hover_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}');

-- --------------------------------------------------------

--
-- Table structure for table `wpd_posts`
--

CREATE TABLE `wpd_posts` (
  `ID` bigint(20) UNSIGNED NOT NULL,
  `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
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpd_posts`
--

INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1, 1, '2026-04-05 07:05:10', '2026-04-05 07:05:10', '<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->', 'Hello world!', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2026-04-05 07:05:10', '2026-04-05 07:05:10', '', 0, 'https://mrarif.me/drsarah/?p=1', 0, 'post', '', 1),
(2, 1, '2026-04-05 07:05:10', '2026-04-05 07:05:10', '<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://mrarif.me/drsarah/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->', 'Sample Page', '', 'publish', 'closed', 'open', '', 'sample-page', '', '', '2026-04-05 07:05:10', '2026-04-05 07:05:10', '', 0, 'https://mrarif.me/drsarah/?page_id=2', 0, 'page', '', 0),
(3, 1, '2026-04-05 07:05:10', '2026-04-05 07:05:10', '<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who we are</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://mrarif.me/drsarah.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Comments</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Media</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Cookies</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Embedded content from other websites</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who we share your data with</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How long we retain your data</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What rights you have over your data</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Where your data is sent</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p>\n<!-- /wp:paragraph -->\n', 'Privacy Policy', '', 'draft', 'closed', 'open', '', 'privacy-policy', '', '', '2026-04-05 07:05:10', '2026-04-05 07:05:10', '', 0, 'https://mrarif.me/drsarah/?page_id=3', 0, 'page', '', 0),
(4, 0, '2026-04-05 07:05:12', '2026-04-05 07:05:12', '<!-- wp:page-list /-->', 'Navigation', '', 'publish', 'closed', 'closed', '', 'navigation', '', '', '2026-04-05 07:05:12', '2026-04-05 07:05:12', '', 0, 'https://mrarif.me/drsarah/index.php/2026/04/05/navigation/', 0, 'wp_navigation', '', 0),
(5, 1, '2026-04-05 07:05:19', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2026-04-05 07:05:19', '0000-00-00 00:00:00', '', 0, 'https://mrarif.me/drsarah/?p=5', 0, 'post', '', 0),
(6, 1, '2026-04-05 07:05:54', '2026-04-05 07:05:54', '', 'Default Kit', '', 'publish', 'closed', 'closed', '', 'default-kit', '', '', '2026-04-05 10:47:34', '2026-04-05 10:47:34', '', 0, 'https://mrarif.me/drsarah/?p=6', 0, 'elementor_library', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(10, 1, '2026-04-05 07:09:37', '2026-04-05 07:09:37', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h1>Dr. Sarah Alabdullah</h1>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h4>Fixed Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h4>Removable Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M21.32153,69.56442a23.37174,23.37174,0,0,0-9.24.09,4.44636,4.44636,0,0,0-3.48,3.76,49.235,49.235,0,0,0,.11,13.34,4.46823,4.46823,0,0,0,2.52991,3.37,13.40178,13.40178,0,0,0,8.13013,1.17,1.41747,1.41747,0,0,1-.04-.2,60.35016,60.35016,0,0,1-.15-16.39014A10.80932,10.80932,0,0,1,21.32153,69.56442Z\"></path><path d=\"M66.28467,76.58529a55.58765,55.58765,0,0,0,.16064,15.33588,4.97633,4.97633,0,0,0,2.75,3.67188,14.58249,14.58249,0,0,0,13.05457-.0506A5.05254,5.05254,0,0,0,85.123,91.71865a55.69556,55.69556,0,0,0,.12878-15.13336,5.04,5.04,0,0,0-3.95459-4.26447,26.6315,26.6315,0,0,0-11.058,0A5.0398,5.0398,0,0,0,66.28467,76.58529Z\"></path><path d=\"M25.13574,75.50631a54.01893,54.01893,0,0,0,.1499,14.86987,4.82949,4.82949,0,0,0,2.66,3.56006,13.72507,13.72507,0,0,0,8.68005,1.24,6.01527,6.01527,0,0,0,4.92993-5.91071V76.85281a5.95076,5.95076,0,0,0-5.4469-5.97784,25.939,25.939,0,0,0-7.123.49127A4.92716,4.92716,0,0,0,25.13574,75.50631Z\"></path><path d=\"M90.3916,95.04446a14.41659,14.41659,0,0,0,9.56995-1.15,4.89591,4.89591,0,0,0,2.77991-3.71008,53.76773,53.76773,0,0,0,.13013-14.66992,4.89423,4.89423,0,0,0-3.83008-4.14,25.78941,25.78941,0,0,0-9.59-.21,10.95734,10.95734,0,0,1,1.75,4.61,62.20134,62.20134,0,0,1-.15,16.86A10.7274,10.7274,0,0,1,90.3916,95.04446Z\"></path><path d=\"M108.67151,91.10452a1.28692,1.28692,0,0,1-.03992.18994,13.40091,13.40091,0,0,0,8.12988-1.17,4.49037,4.49037,0,0,0,2.53-3.37,49.23988,49.23988,0,0,0,.11011-13.34,4.44666,4.44666,0,0,0-3.48-3.76,23.3724,23.3724,0,0,0-9.24011-.09,10.80932,10.80932,0,0,1,2.14,5.14A60.4323,60.4323,0,0,1,108.67151,91.10452Z\"></path><path d=\"M126.42456,98.2a42.34688,42.34688,0,0,0-2.88354-5.416,10.92132,10.92132,0,0,1-4.05029,3.23389,20.68914,20.68914,0,0,1-8.65234,1.96973,18.69958,18.69958,0,0,1-4.7373-.615,11.38535,11.38535,0,0,1-3.4209,2.42554,22.01776,22.01776,0,0,1-9.22852,2.10547,20.10376,20.10376,0,0,1-7.01025-1.28479,11.53128,11.53128,0,0,1-1.4751.82874,22.42428,22.42428,0,0,1-9.417,2.15625,20.88279,20.88279,0,0,1-9.19629-2.165l-.001-.001A11.54485,11.54485,0,0,1,64.001,99.91531a11.54666,11.54666,0,0,1-2.35107,1.52246l-.001.001a20.8787,20.8787,0,0,1-9.19531,2.165,22.44613,22.44613,0,0,1-9.4209-2.15723,11.5312,11.5312,0,0,1-1.47266-.82739,20.11541,20.11541,0,0,1-7.01074,1.28442,21.998,21.998,0,0,1-9.22314-2.10352,11.39616,11.39616,0,0,1-3.42456-2.42773,18.70785,18.70785,0,0,1-4.74341.61621,20.61324,20.61324,0,0,1-8.62744-1.96191,10.97713,10.97713,0,0,1-4.07007-3.24512A42.33219,42.33219,0,0,0,1.57544,98.2a6.68961,6.68961,0,0,0,5.604,9.36768,40.95427,40.95427,0,0,1,14.45288,3.50513c8.61462,4.13489,22.35864,8.67139,35.49939,5.50061a29.22367,29.22367,0,0,1,13.73657,0c13.14075,3.17078,26.88489-1.36572,35.49939-5.50061a40.95489,40.95489,0,0,1,14.45288-3.50513A6.68961,6.68961,0,0,0,126.42456,98.2Z\"></path><path d=\"M39.53845,43.34554a3.02093,3.02093,0,0,0,2.7428,1.70978H64.119a3.02078,3.02078,0,0,0,2.74451-1.71307c.07227-.15466.14209-.31152.209-.469a15.2541,15.2541,0,0,0,1.17212-6.37488c-.08-3.0575-.74036-7.3988-3.72852-8.51172a10.45,10.45,0,0,0-6.81177-.1344,15.28619,15.28619,0,0,1-9.00464,0,10.44927,10.44927,0,0,0-6.81152.1344c-2.98547,1.11182-3.6499,5.44592-3.73267,8.50293a15.21331,15.21331,0,0,0,1.17725,6.39661C39.39868,43.04043,39.46729,43.19406,39.53845,43.34554Zm8.306-10.9115a1.37717,1.37717,0,0,1,1.72876-.91638,12.34805,12.34805,0,0,0,7.25757,0,1.38359,1.38359,0,1,1,.8125,2.6452,15.14388,15.14388,0,0,1-8.88257,0A1.38224,1.38224,0,0,1,47.84448,32.434Z\"></path><path d=\"M61.5542,53.95834a2.26541,2.26541,0,1,0,0-4.53082H44.84546a2.26541,2.26541,0,0,0,0,4.53082h3.74585v3.37213l-1.31323.23151a1.88822,1.88822,0,0,0-1.59326,1.91772,1.8288,1.8288,0,0,0,2.14868,1.70593l.75781-.13361v2.44531l-1.31323.23157a1.8882,1.8882,0,0,0-1.59326,1.91766A1.82847,1.82847,0,0,0,47.8335,67.3525l.75781-.13361v1.36377a2.4434,2.4434,0,0,0,.61646,1.62244l3.08057,3.46954a1.22161,1.22161,0,0,0,1.82715,0l3.08069-3.46954a2.44329,2.44329,0,0,0,.61633-1.62244V65.5931l1.291-.2276a1.90024,1.90024,0,0,0,1.60059-2.04224,1.83181,1.83181,0,0,0-2.13794-1.58459l-.75366.13287V59.42623l1.291-.22766a1.90012,1.90012,0,0,0,1.60034-2.0434,1.83247,1.83247,0,0,0-2.1377-1.58344l-.75366.13287V53.95834Z\"></path><path d=\"M88.46362,53.21761a2,2,0,0,0,2.95764,0L102.89551,40.6152a2,2,0,0,0-1.47888-3.34644H95.69238V16.11288a5.75,5.75,0,0,0-11.5,0V37.26876H78.46814a2,2,0,0,0-1.47888,3.34644Z\"></path><path d=\"M15.52112,53.21761a2,2,0,0,0,2.95764,0L29.95313,40.6152a2,2,0,0,0-1.479-3.34644H22.75V16.11288a5.75,5.75,0,0,0-11.5,0V37.26876H5.52563A2,2,0,0,0,4.04688,40.6152Z\"></path></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'publish', 'closed', 'closed', '', 'home', '', '', '2026-04-07 11:27:19', '2026-04-07 11:27:19', '', 0, 'https://mrarif.me/drsarah/?page_id=10', 0, 'page', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(11, 1, '2026-04-05 07:09:37', '2026-04-05 07:09:37', '', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:09:37', '2026-04-05 07:09:37', '', 10, 'https://mrarif.me/drsarah/?p=11', 0, 'revision', '', 0),
(12, 1, '2026-04-05 07:10:18', '2026-04-05 07:10:18', '<h2>Book your appointment at one of our following locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'publish', 'closed', 'closed', '', 'book-appointment', '', '', '2026-04-07 07:17:30', '2026-04-07 07:17:30', '', 0, 'https://mrarif.me/drsarah/?page_id=12', 0, 'page', '', 0),
(13, 1, '2026-04-05 07:10:18', '2026-04-05 07:10:18', '', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 07:10:18', '2026-04-05 07:10:18', '', 12, 'https://mrarif.me/drsarah/?p=13', 0, 'revision', '', 0),
(14, 1, '2026-04-05 07:11:16', '2026-04-05 07:11:16', '<h2>Refer A Patient</h2>', 'Refer a Patient', '', 'publish', 'closed', 'closed', '', 'refer-a-patient', '', '', '2026-04-07 07:15:26', '2026-04-07 07:15:26', '', 0, 'https://mrarif.me/drsarah/?page_id=14', 0, 'page', '', 0),
(15, 1, '2026-04-05 07:11:16', '2026-04-05 07:11:16', '', 'Referral', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-05 07:11:16', '2026-04-05 07:11:16', '', 14, 'https://mrarif.me/drsarah/?p=15', 0, 'revision', '', 0),
(16, 1, '2026-04-05 07:12:15', '2026-04-05 07:12:15', ' ', '', '', 'publish', 'closed', 'closed', '', '16', '', '', '2026-04-05 07:12:15', '2026-04-05 07:12:15', '', 0, 'https://mrarif.me/drsarah/?p=16', 3, 'nav_menu_item', '', 0),
(17, 1, '2026-04-05 07:12:15', '2026-04-05 07:12:15', ' ', '', '', 'publish', 'closed', 'closed', '', '17', '', '', '2026-04-05 07:12:15', '2026-04-05 07:12:15', '', 0, 'https://mrarif.me/drsarah/?p=17', 2, 'nav_menu_item', '', 0),
(18, 1, '2026-04-05 07:12:15', '2026-04-05 07:12:15', ' ', '', '', 'publish', 'closed', 'closed', '', '18', '', '', '2026-04-05 07:12:15', '2026-04-05 07:12:15', '', 0, 'https://mrarif.me/drsarah/?p=18', 1, 'nav_menu_item', '', 0),
(19, 1, '2026-04-05 07:14:27', '2026-04-05 07:14:27', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '6-revision-v1', '', '', '2026-04-05 07:14:27', '2026-04-05 07:14:27', '', 6, 'https://mrarif.me/drsarah/?p=19', 0, 'revision', '', 0),
(20, 1, '2026-04-05 07:14:28', '2026-04-05 07:14:28', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '6-revision-v1', '', '', '2026-04-05 07:14:28', '2026-04-05 07:14:28', '', 6, 'https://mrarif.me/drsarah/?p=20', 0, 'revision', '', 0),
(21, 1, '2026-04-05 07:17:20', '2026-04-05 07:17:20', '', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:17:20', '2026-04-05 07:17:20', '', 10, 'https://mrarif.me/drsarah/?p=21', 0, 'revision', '', 0),
(22, 1, '2026-04-05 07:17:20', '2026-04-05 07:17:20', '', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:17:20', '2026-04-05 07:17:20', '', 10, 'https://mrarif.me/drsarah/?p=22', 0, 'revision', '', 0),
(23, 1, '2026-04-05 07:17:20', '2026-04-05 07:17:20', '<h2>Dr. Sarah Alabdullah</h2>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:17:20', '2026-04-05 07:17:20', '', 10, 'https://mrarif.me/drsarah/?p=23', 0, 'revision', '', 0),
(24, 1, '2026-04-05 07:20:44', '2026-04-05 07:20:44', '{\n    \"astra-settings[font-family-h2]\": {\n        \"value\": \"\'Playfair Display\', serif\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-04-05 07:20:44\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '1e81d24d-67ac-4806-afa5-41c90aa975f0', '', '', '2026-04-05 07:20:44', '2026-04-05 07:20:44', '', 0, 'https://mrarif.me/drsarah/?p=24', 0, 'customize_changeset', '', 0),
(25, 1, '2026-04-05 07:22:14', '2026-04-05 07:22:14', '{\n    \"astra-settings[headings-font-family]\": {\n        \"value\": \"\'Playfair Display\', serif\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-04-05 07:21:59\"\n    },\n    \"astra-settings[headings-font-variant]\": {\n        \"value\": \"400,600,800\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-04-05 07:21:59\"\n    },\n    \"astra-settings[font-size-h1]\": {\n        \"value\": {\n            \"desktop\": 43,\n            \"tablet\": 30,\n            \"mobile\": 30,\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-04-05 07:21:59\"\n    },\n    \"astra-settings[font-family-h2]\": {\n        \"value\": \"inherit\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-04-05 07:21:59\"\n    },\n    \"astra-settings[font-size-h2]\": {\n        \"value\": {\n            \"desktop\": 35,\n            \"tablet\": 25,\n            \"mobile\": 25,\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-04-05 07:21:59\"\n    },\n    \"astra-settings[font-size-h3]\": {\n        \"value\": {\n            \"desktop\": 29,\n            \"tablet\": 20,\n            \"mobile\": 20,\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-04-05 07:21:59\"\n    },\n    \"astra-settings[font-size-h4]\": {\n        \"value\": {\n            \"desktop\": 25,\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-04-05 07:22:14\"\n    },\n    \"astra-settings[font-size-h5]\": {\n        \"value\": {\n            \"desktop\": 21,\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-04-05 07:22:14\"\n    },\n    \"astra-settings[font-size-h6]\": {\n        \"value\": {\n            \"desktop\": 17,\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-04-05 07:22:14\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '60246af8-a8d0-436e-9c10-de9552f92759', '', '', '2026-04-05 07:22:14', '2026-04-05 07:22:14', '', 0, 'https://mrarif.me/drsarah/?p=25', 0, 'customize_changeset', '', 0),
(26, 1, '2026-04-05 07:23:03', '2026-04-05 07:23:03', '{\n    \"astra-settings[body-font-family]\": {\n        \"value\": \"\'Lato\', sans-serif\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-04-05 07:23:03\"\n    },\n    \"astra-settings[body-font-weight]\": {\n        \"value\": \"400\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-04-05 07:23:03\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', 'aa891d30-faf2-46a7-a3ba-9428639baa5c', '', '', '2026-04-05 07:23:03', '2026-04-05 07:23:03', '', 0, 'https://mrarif.me/drsarah/?p=26', 0, 'customize_changeset', '', 0),
(27, 1, '2026-04-05 07:27:03', '2026-04-05 07:27:03', '<h2>Dr. Sarah Alabdullah</h2>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:27:03', '2026-04-05 07:27:03', '', 10, 'https://mrarif.me/drsarah/?p=27', 0, 'revision', '', 0),
(28, 1, '2026-04-05 07:27:03', '2026-04-05 07:27:03', '<h2>Dr. Sarah Alabdullah</h2>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:27:03', '2026-04-05 07:27:03', '', 10, 'https://mrarif.me/drsarah/?p=28', 0, 'revision', '', 0),
(34, 1, '2026-04-05 07:42:06', '2026-04-05 07:42:06', '<h2>Dr. Sarah Alabdullah</h2>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:42:06', '2026-04-05 07:42:06', '', 10, 'https://mrarif.me/drsarah/?p=34', 0, 'revision', '', 0),
(29, 1, '2026-04-05 07:27:03', '2026-04-05 07:27:03', '<h2>Dr. Sarah Alabdullah</h2>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:27:03', '2026-04-05 07:27:03', '', 10, 'https://mrarif.me/drsarah/?p=29', 0, 'revision', '', 0),
(30, 1, '2026-04-05 07:29:30', '2026-04-05 07:29:30', '{\n    \"astra-settings[site-layout-outside-bg-obj-responsive]\": {\n        \"value\": {\n            \"desktop\": {\n                \"background-color\": \"var(--ast-global-color-5)\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"color\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            },\n            \"tablet\": {\n                \"background-color\": \"\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            },\n            \"mobile\": {\n                \"background-color\": \"\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            }\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-04-05 07:27:31\"\n    },\n    \"astra-settings[content-bg-obj-responsive]\": {\n        \"value\": {\n            \"desktop\": {\n                \"background-color\": \"var(--ast-global-color-4)\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"color\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            },\n            \"tablet\": {\n                \"background-color\": \"var(--ast-global-color-4)\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"color\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            },\n            \"mobile\": {\n                \"background-color\": \"var(--ast-global-color-4)\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"color\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            }\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-04-05 07:27:31\"\n    },\n    \"astra-settings[global-color-palette]\": {\n        \"value\": {\n            \"palette\": [\n                \"#90ee90\",\n                \"#d2b48c\",\n                \"#08203e\",\n                \"#656565\",\n                \"#FFFFFF\",\n                \"#f5f5dc\",\n                \"#111111\",\n                \"#D1D5DB\",\n                \"#111111\"\n            ],\n            \"flag\": true\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-04-05 07:29:30\"\n    },\n    \"astra-color-palettes\": {\n        \"value\": {\n            \"currentPalette\": \"palette_1\",\n            \"palettes\": {\n                \"palette_1\": [\n                    \"#90ee90\",\n                    \"#d2b48c\",\n                    \"#08203e\",\n                    \"#656565\",\n                    \"#FFFFFF\",\n                    \"#f5f5dc\",\n                    \"#111111\",\n                    \"#D1D5DB\",\n                    \"#111111\"\n                ],\n                \"palette_2\": [\n                    \"#0067FF\",\n                    \"#005EE9\",\n                    \"#0F172A\",\n                    \"#364151\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#070614\",\n                    \"#D1DAE5\",\n                    \"#222222\"\n                ],\n                \"palette_3\": [\n                    \"#6528F7\",\n                    \"#5511F8\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#F2F0FE\",\n                    \"#0D0614\",\n                    \"#D8D8F5\",\n                    \"#222222\"\n                ],\n                \"palette_4\": [\n                    \"#0085FF\",\n                    \"#0177E3\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#212A37\",\n                    \"#0F172A\",\n                    \"#4F5B62\",\n                    \"#070614\",\n                    \"#222222\"\n                ]\n            },\n            \"presets\": {\n                \"Oak\": [\n                    \"#0067FF\",\n                    \"#005EE9\",\n                    \"#0F172A\",\n                    \"#364151\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#070614\",\n                    \"#D1DAE5\",\n                    \"#222222\"\n                ],\n                \"Viola\": [\n                    \"#6528F7\",\n                    \"#5511F8\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#F2F0FE\",\n                    \"#0D0614\",\n                    \"#D8D8F5\",\n                    \"#222222\"\n                ],\n                \"Cedar\": [\n                    \"#DD183B\",\n                    \"#CC1939\",\n                    \"#0F172A\",\n                    \"#3A3A3A\",\n                    \"#FFFFFF\",\n                    \"#FFEDE6\",\n                    \"#140609\",\n                    \"#FFD1BF\",\n                    \"#222222\"\n                ],\n                \"Willow\": [\n                    \"#54B435\",\n                    \"#379237\",\n                    \"#0F172A\",\n                    \"#2F3B40\",\n                    \"#FFFFFF\",\n                    \"#EDFBE2\",\n                    \"#0C1406\",\n                    \"#D5EAD8\",\n                    \"#222222\"\n                ],\n                \"Lily\": [\n                    \"#DCA54A\",\n                    \"#D09A40\",\n                    \"#0F172A\",\n                    \"#4A4A4A\",\n                    \"#FFFFFF\",\n                    \"#FAF5E5\",\n                    \"#141004\",\n                    \"#F0E6C5\",\n                    \"#222222\"\n                ],\n                \"Rose\": [\n                    \"#FB5FAB\",\n                    \"#EA559D\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#FCEEF5\",\n                    \"#140610\",\n                    \"#FAD8E9\",\n                    \"#222222\"\n                ],\n                \"Sage\": [\n                    \"#1B9C85\",\n                    \"#178E79\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#EDF6EE\",\n                    \"#06140C\",\n                    \"#D4F3D7\",\n                    \"#222222\"\n                ],\n                \"Flare\": [\n                    \"#FD9800\",\n                    \"#E98C00\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#FEF9E1\",\n                    \"#141006\",\n                    \"#F9F0C8\",\n                    \"#222222\"\n                ],\n                \"Maple\": [\n                    \"#FF6210\",\n                    \"#F15808\",\n                    \"#1C0D0A\",\n                    \"#353535\",\n                    \"#FFFFFF\",\n                    \"#FEF1E4\",\n                    \"#140B06\",\n                    \"#E5D7D1\",\n                    \"#222222\"\n                ],\n                \"Birch\": [\n                    \"#737880\",\n                    \"#65696F\",\n                    \"#151616\",\n                    \"#393C40\",\n                    \"#FFFFFF\",\n                    \"#F6F6F6\",\n                    \"#232529\",\n                    \"#F1F0F0\",\n                    \"#222222\"\n                ],\n                \"Dark\": [\n                    \"#0085FF\",\n                    \"#0177E3\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#212A37\",\n                    \"#0F172A\",\n                    \"#4F5B62\",\n                    \"#070614\",\n                    \"#222222\"\n                ]\n            },\n            \"presetNames\": {\n                \"palette_1\": null,\n                \"palette_2\": \"Oak\",\n                \"palette_3\": \"Viola\",\n                \"palette_4\": \"Dark\"\n            },\n            \"flag\": true\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-04-05 07:29:30\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '722c043c-a0ca-4ee7-8c19-8f5b5b9f779b', '', '', '2026-04-05 07:29:30', '2026-04-05 07:29:30', '', 0, 'https://mrarif.me/drsarah/?p=30', 0, 'customize_changeset', '', 0),
(31, 1, '2026-04-05 07:30:57', '2026-04-05 07:30:57', '{\n    \"astra-settings[button-color]\": {\n        \"value\": \"var(--ast-global-color-2)\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-04-05 07:30:38\"\n    },\n    \"astra-settings[button-h-color]\": {\n        \"value\": \"var(--ast-global-color-2)\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-04-05 07:30:38\"\n    },\n    \"astra-settings[button-bg-color]\": {\n        \"value\": \"var(--ast-global-color-0)\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-04-05 07:30:38\"\n    },\n    \"astra-settings[button-bg-h-color]\": {\n        \"value\": \"var(--ast-global-color-1)\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-04-05 07:30:38\"\n    },\n    \"astra-settings[theme-button-padding]\": {\n        \"value\": {\n            \"desktop\": {\n                \"top\": \"13\",\n                \"right\": \"37\",\n                \"bottom\": \"13\",\n                \"left\": \"37\"\n            },\n            \"tablet\": {\n                \"top\": 14,\n                \"right\": 28,\n                \"bottom\": 14,\n                \"left\": 28\n            },\n            \"mobile\": {\n                \"top\": 12,\n                \"right\": 24,\n                \"bottom\": 12,\n                \"left\": 24\n            },\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-04-05 07:30:38\"\n    },\n    \"astra-settings[button-radius-fields]\": {\n        \"value\": {\n            \"desktop\": {\n                \"top\": \"\",\n                \"right\": \"\",\n                \"bottom\": \"\",\n                \"left\": \"\"\n            },\n            \"tablet\": {\n                \"top\": \"\",\n                \"right\": \"\",\n                \"bottom\": \"\",\n                \"left\": \"\"\n            },\n            \"mobile\": {\n                \"top\": \"\",\n                \"right\": \"\",\n                \"bottom\": \"\",\n                \"left\": \"\"\n            },\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-04-05 07:30:38\"\n    },\n    \"astra-settings[font-family-button]\": {\n        \"value\": \"\'Lato\', sans-serif\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-04-05 07:30:57\"\n    },\n    \"astra-settings[font-weight-button]\": {\n        \"value\": \"inherit\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-04-05 07:30:57\"\n    },\n    \"astra-settings[font-size-button]\": {\n        \"value\": {\n            \"desktop\": 15,\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-04-05 07:30:57\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', 'a29fe9cd-b4c5-44f8-9a8b-0e42d4991301', '', '', '2026-04-05 07:30:57', '2026-04-05 07:30:57', '', 0, 'https://mrarif.me/drsarah/?p=31', 0, 'customize_changeset', '', 0),
(32, 1, '2026-04-05 07:42:06', '2026-04-05 07:42:06', '<h2>Dr. Sarah Alabdullah</h2>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:42:06', '2026-04-05 07:42:06', '', 10, 'https://mrarif.me/drsarah/?p=32', 0, 'revision', '', 0),
(33, 1, '2026-04-05 07:42:06', '2026-04-05 07:42:06', '<h2>Dr. Sarah Alabdullah</h2>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:42:06', '2026-04-05 07:42:06', '', 10, 'https://mrarif.me/drsarah/?p=33', 0, 'revision', '', 0),
(35, 1, '2026-04-05 07:42:36', '2026-04-05 07:42:36', '<h2>Dr. Sarah Alabdullah</h2>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:42:36', '2026-04-05 07:42:36', '', 10, 'https://mrarif.me/drsarah/?p=35', 0, 'revision', '', 0),
(36, 1, '2026-04-05 07:42:36', '2026-04-05 07:42:36', '<h2>Dr. Sarah Alabdullah</h2>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:42:36', '2026-04-05 07:42:36', '', 10, 'https://mrarif.me/drsarah/?p=36', 0, 'revision', '', 0),
(37, 1, '2026-04-05 07:42:37', '2026-04-05 07:42:37', '<h2>Dr. Sarah Alabdullah</h2>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:42:37', '2026-04-05 07:42:37', '', 10, 'https://mrarif.me/drsarah/?p=37', 0, 'revision', '', 0),
(38, 1, '2026-04-05 07:44:41', '2026-04-05 07:44:41', '', 'Dr. Sarah Alabdullah', '', 'inherit', 'open', 'closed', '', 'dr-sarah-alabdullah', '', '', '2026-04-05 07:44:41', '2026-04-05 07:44:41', '', 10, 'https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg', 0, 'attachment', 'image/jpeg', 0),
(39, 1, '2026-04-05 07:44:59', '2026-04-05 07:44:59', '<h2>Dr. Sarah Alabdullah</h2>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:44:59', '2026-04-05 07:44:59', '', 10, 'https://mrarif.me/drsarah/?p=39', 0, 'revision', '', 0),
(40, 1, '2026-04-05 07:45:00', '2026-04-05 07:45:00', '<h2>Dr. Sarah Alabdullah</h2>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:45:00', '2026-04-05 07:45:00', '', 10, 'https://mrarif.me/drsarah/?p=40', 0, 'revision', '', 0),
(41, 1, '2026-04-05 07:45:00', '2026-04-05 07:45:00', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:45:00', '2026-04-05 07:45:00', '', 10, 'https://mrarif.me/drsarah/?p=41', 0, 'revision', '', 0),
(42, 1, '2026-04-05 07:46:08', '2026-04-05 07:46:08', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:46:08', '2026-04-05 07:46:08', '', 10, 'https://mrarif.me/drsarah/?p=42', 0, 'revision', '', 0),
(43, 1, '2026-04-05 07:46:08', '2026-04-05 07:46:08', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:46:08', '2026-04-05 07:46:08', '', 10, 'https://mrarif.me/drsarah/?p=43', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(44, 1, '2026-04-05 07:46:08', '2026-04-05 07:46:08', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:46:08', '2026-04-05 07:46:08', '', 10, 'https://mrarif.me/drsarah/?p=44', 0, 'revision', '', 0),
(45, 1, '2026-04-05 07:49:47', '2026-04-05 07:49:47', '<ul>\n							<li>\n											<a href=\"https://mrarif.me/drsarah/book-appointment/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z\"></path></svg>						\n										Book your complimentary consultation\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/drsarah/\">\n							<img width=\"462\" height=\"540\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15.png\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15.png 462w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15-257x300.png 257w\" sizes=\"(max-width: 462px) 100vw, 462px\" />								</a>', 'Elementor Header #45', '', 'publish', 'closed', 'closed', '', 'elementor-header-45', '', '', '2026-04-07 08:09:40', '2026-04-07 08:09:40', '', 0, 'https://mrarif.me/drsarah/?post_type=elementor_library&#038;p=45', 0, 'elementor_library', '', 0),
(46, 1, '2026-04-05 07:49:47', '2026-04-05 07:49:47', '', 'Elementor Header #45', '', 'inherit', 'closed', 'closed', '', '45-revision-v1', '', '', '2026-04-05 07:49:47', '2026-04-05 07:49:47', '', 45, 'https://mrarif.me/drsarah/?p=46', 0, 'revision', '', 0),
(47, 1, '2026-04-05 07:50:26', '2026-04-05 07:50:26', '', 'logo (15)', '', 'inherit', 'open', 'closed', '', 'logo-15', '', '', '2026-04-05 07:50:26', '2026-04-05 07:50:26', '', 45, 'https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15.png', 0, 'attachment', 'image/png', 0),
(48, 1, '2026-04-05 07:52:37', '2026-04-05 07:52:37', '<img width=\"462\" height=\"540\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15.png\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15.png 462w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15-257x300.png 257w\" sizes=\"(max-width: 462px) 100vw, 462px\" />', 'Elementor Header #45', '', 'inherit', 'closed', 'closed', '', '45-revision-v1', '', '', '2026-04-05 07:52:37', '2026-04-05 07:52:37', '', 45, 'https://mrarif.me/drsarah/?p=48', 0, 'revision', '', 0),
(49, 1, '2026-04-05 07:53:07', '2026-04-05 07:53:07', '<a href=\"https://mrarif.me/drsarah/\">\n							<img width=\"462\" height=\"540\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15.png\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15.png 462w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15-257x300.png 257w\" sizes=\"(max-width: 462px) 100vw, 462px\" />								</a>', 'Elementor Header #45', '', 'inherit', 'closed', 'closed', '', '45-revision-v1', '', '', '2026-04-05 07:53:07', '2026-04-05 07:53:07', '', 45, 'https://mrarif.me/drsarah/?p=49', 0, 'revision', '', 0),
(50, 1, '2026-04-05 07:53:41', '2026-04-05 07:53:41', '<a href=\"https://mrarif.me/drsarah/\">\n							<img width=\"462\" height=\"540\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15.png\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15.png 462w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15-257x300.png 257w\" sizes=\"(max-width: 462px) 100vw, 462px\" />								</a>', 'Elementor Header #45', '', 'inherit', 'closed', 'closed', '', '45-revision-v1', '', '', '2026-04-05 07:53:41', '2026-04-05 07:53:41', '', 45, 'https://mrarif.me/drsarah/?p=50', 0, 'revision', '', 0),
(51, 1, '2026-04-05 07:56:12', '2026-04-05 07:56:12', '<a href=\"https://mrarif.me/drsarah/\">\n							<img width=\"462\" height=\"540\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15.png\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15.png 462w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15-257x300.png 257w\" sizes=\"(max-width: 462px) 100vw, 462px\" />								</a>', 'Elementor Header #45', '', 'inherit', 'closed', 'closed', '', '45-revision-v1', '', '', '2026-04-05 07:56:12', '2026-04-05 07:56:12', '', 45, 'https://mrarif.me/drsarah/?p=51', 0, 'revision', '', 0),
(52, 1, '2026-04-05 07:57:25', '2026-04-05 07:57:25', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:57:25', '2026-04-05 07:57:25', '', 10, 'https://mrarif.me/drsarah/?p=52', 0, 'revision', '', 0),
(53, 1, '2026-04-05 07:57:25', '2026-04-05 07:57:25', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:57:25', '2026-04-05 07:57:25', '', 10, 'https://mrarif.me/drsarah/?p=53', 0, 'revision', '', 0),
(54, 1, '2026-04-05 07:57:25', '2026-04-05 07:57:25', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:57:25', '2026-04-05 07:57:25', '', 10, 'https://mrarif.me/drsarah/?p=54', 0, 'revision', '', 0),
(55, 1, '2026-04-05 07:57:53', '2026-04-05 07:57:53', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:57:53', '2026-04-05 07:57:53', '', 10, 'https://mrarif.me/drsarah/?p=55', 0, 'revision', '', 0),
(56, 1, '2026-04-05 07:57:53', '2026-04-05 07:57:53', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:57:53', '2026-04-05 07:57:53', '', 10, 'https://mrarif.me/drsarah/?p=56', 0, 'revision', '', 0),
(57, 1, '2026-04-05 07:57:53', '2026-04-05 07:57:53', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:57:53', '2026-04-05 07:57:53', '', 10, 'https://mrarif.me/drsarah/?p=57', 0, 'revision', '', 0),
(58, 1, '2026-04-05 07:58:14', '2026-04-05 07:58:14', '<a href=\"https://mrarif.me/drsarah/\">\n							<img width=\"462\" height=\"540\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15.png\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15.png 462w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15-257x300.png 257w\" sizes=\"(max-width: 462px) 100vw, 462px\" />								</a>', 'Elementor Header #45', '', 'inherit', 'closed', 'closed', '', '45-revision-v1', '', '', '2026-04-05 07:58:14', '2026-04-05 07:58:14', '', 45, 'https://mrarif.me/drsarah/?p=58', 0, 'revision', '', 0),
(59, 1, '2026-04-05 07:59:09', '2026-04-05 07:59:09', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:59:09', '2026-04-05 07:59:09', '', 10, 'https://mrarif.me/drsarah/?p=59', 0, 'revision', '', 0),
(60, 1, '2026-04-05 07:59:09', '2026-04-05 07:59:09', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:59:09', '2026-04-05 07:59:09', '', 10, 'https://mrarif.me/drsarah/?p=60', 0, 'revision', '', 0),
(61, 1, '2026-04-05 07:59:09', '2026-04-05 07:59:09', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h5>Certified Specialist in Prosthodontics</h5>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:59:09', '2026-04-05 07:59:09', '', 10, 'https://mrarif.me/drsarah/?p=61', 0, 'revision', '', 0),
(62, 1, '2026-04-05 07:59:21', '2026-04-05 07:59:21', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h5>Certified Specialist in Prosthodontics</h5>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:59:21', '2026-04-05 07:59:21', '', 10, 'https://mrarif.me/drsarah/?p=62', 0, 'revision', '', 0),
(63, 1, '2026-04-05 07:59:21', '2026-04-05 07:59:21', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h5>Certified Specialist in Prosthodontics</h5>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:59:21', '2026-04-05 07:59:21', '', 10, 'https://mrarif.me/drsarah/?p=63', 0, 'revision', '', 0),
(64, 1, '2026-04-05 07:59:21', '2026-04-05 07:59:21', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:59:21', '2026-04-05 07:59:21', '', 10, 'https://mrarif.me/drsarah/?p=64', 0, 'revision', '', 0),
(65, 1, '2026-04-05 07:59:55', '2026-04-05 07:59:55', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:59:55', '2026-04-05 07:59:55', '', 10, 'https://mrarif.me/drsarah/?p=65', 0, 'revision', '', 0),
(66, 1, '2026-04-05 07:59:55', '2026-04-05 07:59:55', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:59:55', '2026-04-05 07:59:55', '', 10, 'https://mrarif.me/drsarah/?p=66', 0, 'revision', '', 0),
(70, 1, '2026-04-05 08:00:08', '2026-04-05 08:00:08', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:00:08', '2026-04-05 08:00:08', '', 10, 'https://mrarif.me/drsarah/?p=70', 0, 'revision', '', 0),
(67, 1, '2026-04-05 07:59:55', '2026-04-05 07:59:55', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 07:59:55', '2026-04-05 07:59:55', '', 10, 'https://mrarif.me/drsarah/?p=67', 0, 'revision', '', 0),
(68, 1, '2026-04-05 08:00:07', '2026-04-05 08:00:07', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:00:07', '2026-04-05 08:00:07', '', 10, 'https://mrarif.me/drsarah/?p=68', 0, 'revision', '', 0),
(69, 1, '2026-04-05 08:00:07', '2026-04-05 08:00:07', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:00:07', '2026-04-05 08:00:07', '', 10, 'https://mrarif.me/drsarah/?p=69', 0, 'revision', '', 0),
(71, 1, '2026-04-05 08:03:32', '2026-04-05 08:03:32', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:03:32', '2026-04-05 08:03:32', '', 10, 'https://mrarif.me/drsarah/?p=71', 0, 'revision', '', 0),
(72, 1, '2026-04-05 08:03:32', '2026-04-05 08:03:32', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:03:32', '2026-04-05 08:03:32', '', 10, 'https://mrarif.me/drsarah/?p=72', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(73, 1, '2026-04-05 08:03:32', '2026-04-05 08:03:32', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h4>Dr. Sarah Alabdullah</h4>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:03:32', '2026-04-05 08:03:32', '', 10, 'https://mrarif.me/drsarah/?p=73', 0, 'revision', '', 0),
(74, 1, '2026-04-05 08:04:49', '2026-04-05 08:04:49', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h4>Dr. Sarah Alabdullah</h4>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:04:49', '2026-04-05 08:04:49', '', 10, 'https://mrarif.me/drsarah/?p=74', 0, 'revision', '', 0),
(75, 1, '2026-04-05 08:04:49', '2026-04-05 08:04:49', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h4>Dr. Sarah Alabdullah</h4>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:04:49', '2026-04-05 08:04:49', '', 10, 'https://mrarif.me/drsarah/?p=75', 0, 'revision', '', 0),
(76, 1, '2026-04-05 08:04:50', '2026-04-05 08:04:50', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h4>Dr. Sarah Alabdullah</h4>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:04:50', '2026-04-05 08:04:50', '', 10, 'https://mrarif.me/drsarah/?p=76', 0, 'revision', '', 0),
(77, 1, '2026-04-05 08:05:28', '2026-04-05 08:05:28', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h4>Dr. Sarah Alabdullah</h4>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:05:28', '2026-04-05 08:05:28', '', 10, 'https://mrarif.me/drsarah/?p=77', 0, 'revision', '', 0),
(78, 1, '2026-04-05 08:05:28', '2026-04-05 08:05:28', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h4>Dr. Sarah Alabdullah</h4>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:05:28', '2026-04-05 08:05:28', '', 10, 'https://mrarif.me/drsarah/?p=78', 0, 'revision', '', 0),
(79, 1, '2026-04-05 08:05:29', '2026-04-05 08:05:29', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h4>Dr. Sarah Alabdullah</h4>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:05:29', '2026-04-05 08:05:29', '', 10, 'https://mrarif.me/drsarah/?p=79', 0, 'revision', '', 0),
(80, 1, '2026-04-05 08:07:04', '2026-04-05 08:07:04', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h4>Dr. Sarah Alabdullah</h4>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:07:04', '2026-04-05 08:07:04', '', 10, 'https://mrarif.me/drsarah/?p=80', 0, 'revision', '', 0),
(81, 1, '2026-04-05 08:07:04', '2026-04-05 08:07:04', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h4>Dr. Sarah Alabdullah</h4>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:07:04', '2026-04-05 08:07:04', '', 10, 'https://mrarif.me/drsarah/?p=81', 0, 'revision', '', 0),
(82, 1, '2026-04-05 08:07:04', '2026-04-05 08:07:04', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:07:04', '2026-04-05 08:07:04', '', 10, 'https://mrarif.me/drsarah/?p=82', 0, 'revision', '', 0),
(83, 1, '2026-04-05 08:09:31', '2026-04-05 08:09:31', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:09:31', '2026-04-05 08:09:31', '', 10, 'https://mrarif.me/drsarah/?p=83', 0, 'revision', '', 0),
(84, 1, '2026-04-05 08:09:31', '2026-04-05 08:09:31', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:09:31', '2026-04-05 08:09:31', '', 10, 'https://mrarif.me/drsarah/?p=84', 0, 'revision', '', 0),
(85, 1, '2026-04-05 08:09:32', '2026-04-05 08:09:32', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:09:32', '2026-04-05 08:09:32', '', 10, 'https://mrarif.me/drsarah/?p=85', 0, 'revision', '', 0),
(86, 1, '2026-04-05 08:11:01', '2026-04-05 08:11:01', '<a href=\"https://mrarif.me/drsarah/\">\n							<img width=\"462\" height=\"540\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15.png\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15.png 462w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15-257x300.png 257w\" sizes=\"(max-width: 462px) 100vw, 462px\" />								</a>', 'Elementor Header #45', '', 'inherit', 'closed', 'closed', '', '45-revision-v1', '', '', '2026-04-05 08:11:01', '2026-04-05 08:11:01', '', 45, 'https://mrarif.me/drsarah/?p=86', 0, 'revision', '', 0),
(87, 1, '2026-04-05 08:13:30', '2026-04-05 08:13:30', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:13:30', '2026-04-05 08:13:30', '', 10, 'https://mrarif.me/drsarah/?p=87', 0, 'revision', '', 0),
(88, 1, '2026-04-05 08:13:30', '2026-04-05 08:13:30', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:13:30', '2026-04-05 08:13:30', '', 10, 'https://mrarif.me/drsarah/?p=88', 0, 'revision', '', 0),
(89, 1, '2026-04-05 08:13:31', '2026-04-05 08:13:31', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:13:31', '2026-04-05 08:13:31', '', 10, 'https://mrarif.me/drsarah/?p=89', 0, 'revision', '', 0),
(90, 1, '2026-04-05 08:15:28', '2026-04-05 08:15:28', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:15:28', '2026-04-05 08:15:28', '', 10, 'https://mrarif.me/drsarah/?p=90', 0, 'revision', '', 0),
(91, 1, '2026-04-05 08:15:28', '2026-04-05 08:15:28', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:15:28', '2026-04-05 08:15:28', '', 10, 'https://mrarif.me/drsarah/?p=91', 0, 'revision', '', 0),
(92, 1, '2026-04-05 08:15:29', '2026-04-05 08:15:29', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:15:29', '2026-04-05 08:15:29', '', 10, 'https://mrarif.me/drsarah/?p=92', 0, 'revision', '', 0),
(93, 1, '2026-04-05 08:16:37', '2026-04-05 08:16:37', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:16:37', '2026-04-05 08:16:37', '', 10, 'https://mrarif.me/drsarah/?p=93', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(94, 1, '2026-04-05 08:16:37', '2026-04-05 08:16:37', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:16:37', '2026-04-05 08:16:37', '', 10, 'https://mrarif.me/drsarah/?p=94', 0, 'revision', '', 0),
(95, 1, '2026-04-05 08:16:37', '2026-04-05 08:16:37', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:16:37', '2026-04-05 08:16:37', '', 10, 'https://mrarif.me/drsarah/?p=95', 0, 'revision', '', 0),
(96, 1, '2026-04-05 08:16:47', '2026-04-05 08:16:47', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:16:47', '2026-04-05 08:16:47', '', 10, 'https://mrarif.me/drsarah/?p=96', 0, 'revision', '', 0),
(97, 1, '2026-04-05 08:16:47', '2026-04-05 08:16:47', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:16:47', '2026-04-05 08:16:47', '', 10, 'https://mrarif.me/drsarah/?p=97', 0, 'revision', '', 0),
(98, 1, '2026-04-05 08:16:48', '2026-04-05 08:16:48', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:16:48', '2026-04-05 08:16:48', '', 10, 'https://mrarif.me/drsarah/?p=98', 0, 'revision', '', 0),
(99, 1, '2026-04-05 08:22:28', '2026-04-05 08:22:28', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:22:28', '2026-04-05 08:22:28', '', 10, 'https://mrarif.me/drsarah/?p=99', 0, 'revision', '', 0),
(100, 1, '2026-04-05 08:22:28', '2026-04-05 08:22:28', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:22:28', '2026-04-05 08:22:28', '', 10, 'https://mrarif.me/drsarah/?p=100', 0, 'revision', '', 0),
(101, 1, '2026-04-05 08:22:28', '2026-04-05 08:22:28', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:22:28', '2026-04-05 08:22:28', '', 10, 'https://mrarif.me/drsarah/?p=101', 0, 'revision', '', 0),
(102, 1, '2026-04-05 08:23:27', '2026-04-05 08:23:27', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:23:27', '2026-04-05 08:23:27', '', 10, 'https://mrarif.me/drsarah/?p=102', 0, 'revision', '', 0),
(103, 1, '2026-04-05 08:23:27', '2026-04-05 08:23:27', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:23:27', '2026-04-05 08:23:27', '', 10, 'https://mrarif.me/drsarah/?p=103', 0, 'revision', '', 0),
(104, 1, '2026-04-05 08:23:27', '2026-04-05 08:23:27', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n																			<img src=\"https://mrarif.me/drsarah/wp-content/plugins/elementor/assets/images/placeholder.png\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/plugins/elementor/assets/images/placeholder.png\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/plugins/elementor/assets/images/placeholder.png\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/plugins/elementor/assets/images/placeholder.png\">', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:23:27', '2026-04-05 08:23:27', '', 10, 'https://mrarif.me/drsarah/?p=104', 0, 'revision', '', 0),
(105, 1, '2026-04-05 08:25:14', '2026-04-05 08:25:14', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n																			<img src=\"https://mrarif.me/drsarah/wp-content/plugins/elementor/assets/images/placeholder.png\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/plugins/elementor/assets/images/placeholder.png\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/plugins/elementor/assets/images/placeholder.png\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/plugins/elementor/assets/images/placeholder.png\">', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:25:14', '2026-04-05 08:25:14', '', 10, 'https://mrarif.me/drsarah/?p=105', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(106, 1, '2026-04-05 08:25:14', '2026-04-05 08:25:14', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n																			<img src=\"https://mrarif.me/drsarah/wp-content/plugins/elementor/assets/images/placeholder.png\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/plugins/elementor/assets/images/placeholder.png\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/plugins/elementor/assets/images/placeholder.png\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/plugins/elementor/assets/images/placeholder.png\">', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:25:14', '2026-04-05 08:25:14', '', 10, 'https://mrarif.me/drsarah/?p=106', 0, 'revision', '', 0),
(107, 1, '2026-04-05 08:25:14', '2026-04-05 08:25:14', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n																			<img src=\"https://mrarif.me/drsarah/wp-content/plugins/elementor/assets/images/placeholder.png\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/plugins/elementor/assets/images/placeholder.png\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/plugins/elementor/assets/images/placeholder.png\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/plugins/elementor/assets/images/placeholder.png\">', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:25:14', '2026-04-05 08:25:14', '', 10, 'https://mrarif.me/drsarah/?p=107', 0, 'revision', '', 0),
(108, 1, '2026-04-05 08:39:20', '2026-04-05 08:39:20', '', 'my work (5)', '', 'inherit', 'open', 'closed', '', 'my-work-5', '', '', '2026-04-05 08:39:20', '2026-04-05 08:39:20', '', 10, 'https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg', 0, 'attachment', 'image/jpeg', 0),
(109, 1, '2026-04-05 08:39:46', '2026-04-05 08:39:46', '', 'my work (7)', '', 'inherit', 'open', 'closed', '', 'my-work-7', '', '', '2026-04-05 08:39:46', '2026-04-05 08:39:46', '', 10, 'https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg', 0, 'attachment', 'image/jpeg', 0),
(110, 1, '2026-04-05 08:39:58', '2026-04-05 08:39:58', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n																			<img src=\"https://mrarif.me/drsarah/wp-content/plugins/elementor/assets/images/placeholder.png\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/plugins/elementor/assets/images/placeholder.png\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/plugins/elementor/assets/images/placeholder.png\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/plugins/elementor/assets/images/placeholder.png\">', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:39:58', '2026-04-05 08:39:58', '', 10, 'https://mrarif.me/drsarah/?p=110', 0, 'revision', '', 0),
(111, 1, '2026-04-05 08:39:58', '2026-04-05 08:39:58', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n																			<img src=\"https://mrarif.me/drsarah/wp-content/plugins/elementor/assets/images/placeholder.png\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/plugins/elementor/assets/images/placeholder.png\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/plugins/elementor/assets/images/placeholder.png\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/plugins/elementor/assets/images/placeholder.png\">', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:39:58', '2026-04-05 08:39:58', '', 10, 'https://mrarif.me/drsarah/?p=111', 0, 'revision', '', 0),
(112, 1, '2026-04-05 08:39:59', '2026-04-05 08:39:59', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:39:59', '2026-04-05 08:39:59', '', 10, 'https://mrarif.me/drsarah/?p=112', 0, 'revision', '', 0),
(113, 1, '2026-04-05 08:40:28', '2026-04-05 08:40:28', '', 'my work (2)', '', 'inherit', 'open', 'closed', '', 'my-work-2', '', '', '2026-04-05 08:40:28', '2026-04-05 08:40:28', '', 10, 'https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg', 0, 'attachment', 'image/jpeg', 0),
(114, 1, '2026-04-05 08:40:45', '2026-04-05 08:40:45', '', 'my work (3)', '', 'inherit', 'open', 'closed', '', 'my-work-3', '', '', '2026-04-05 08:40:45', '2026-04-05 08:40:45', '', 10, 'https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg', 0, 'attachment', 'image/jpeg', 0),
(115, 1, '2026-04-05 08:41:07', '2026-04-05 08:41:07', '', 'my work (4)', '', 'inherit', 'open', 'closed', '', 'my-work-4', '', '', '2026-04-05 08:41:07', '2026-04-05 08:41:07', '', 10, 'https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg', 0, 'attachment', 'image/jpeg', 0),
(116, 1, '2026-04-05 08:41:31', '2026-04-05 08:41:31', '', 'my work (1)', '', 'inherit', 'open', 'closed', '', 'my-work-1', '', '', '2026-04-05 08:41:31', '2026-04-05 08:41:31', '', 10, 'https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(117, 1, '2026-04-05 08:41:50', '2026-04-05 08:41:50', '', 'my work (6)', '', 'inherit', 'open', 'closed', '', 'my-work-6', '', '', '2026-04-05 08:41:50', '2026-04-05 08:41:50', '', 10, 'https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg', 0, 'attachment', 'image/jpeg', 0),
(118, 1, '2026-04-05 08:42:09', '2026-04-05 08:42:09', '', 'my work', '', 'inherit', 'open', 'closed', '', 'my-work', '', '', '2026-04-05 08:42:09', '2026-04-05 08:42:09', '', 10, 'https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg', 0, 'attachment', 'image/jpeg', 0),
(119, 1, '2026-04-05 08:42:56', '2026-04-05 08:42:56', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:42:56', '2026-04-05 08:42:56', '', 10, 'https://mrarif.me/drsarah/?p=119', 0, 'revision', '', 0),
(120, 1, '2026-04-05 08:42:56', '2026-04-05 08:42:56', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:42:56', '2026-04-05 08:42:56', '', 10, 'https://mrarif.me/drsarah/?p=120', 0, 'revision', '', 0),
(121, 1, '2026-04-05 08:42:56', '2026-04-05 08:42:56', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:42:56', '2026-04-05 08:42:56', '', 10, 'https://mrarif.me/drsarah/?p=121', 0, 'revision', '', 0),
(122, 1, '2026-04-05 08:43:39', '2026-04-05 08:43:39', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:43:39', '2026-04-05 08:43:39', '', 10, 'https://mrarif.me/drsarah/?p=122', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(123, 1, '2026-04-05 08:43:39', '2026-04-05 08:43:39', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:43:39', '2026-04-05 08:43:39', '', 10, 'https://mrarif.me/drsarah/?p=123', 0, 'revision', '', 0),
(124, 1, '2026-04-05 08:43:39', '2026-04-05 08:43:39', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 08:43:39', '2026-04-05 08:43:39', '', 10, 'https://mrarif.me/drsarah/?p=124', 0, 'revision', '', 0),
(126, 1, '2026-04-05 09:17:26', '2026-04-05 09:17:26', '', 'check-mark_18359833', '', 'inherit', 'open', 'closed', '', 'check-mark_18359833', '', '', '2026-04-05 09:17:26', '2026-04-05 09:17:26', '', 10, 'https://mrarif.me/drsarah/wp-content/uploads/2026/04/check-mark_18359833.svg', 0, 'attachment', 'image/svg+xml', 0),
(127, 1, '2026-04-05 09:19:51', '2026-04-05 09:19:51', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:19:51', '2026-04-05 09:19:51', '', 10, 'https://mrarif.me/drsarah/?p=127', 0, 'revision', '', 0),
(128, 1, '2026-04-05 09:19:51', '2026-04-05 09:19:51', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:19:51', '2026-04-05 09:19:51', '', 10, 'https://mrarif.me/drsarah/?p=128', 0, 'revision', '', 0),
(129, 1, '2026-04-05 09:19:51', '2026-04-05 09:19:51', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:19:51', '2026-04-05 09:19:51', '', 10, 'https://mrarif.me/drsarah/?p=129', 0, 'revision', '', 0),
(130, 1, '2026-04-05 09:20:06', '2026-04-05 09:20:06', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:20:06', '2026-04-05 09:20:06', '', 10, 'https://mrarif.me/drsarah/?p=130', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(131, 1, '2026-04-05 09:20:06', '2026-04-05 09:20:06', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:20:06', '2026-04-05 09:20:06', '', 10, 'https://mrarif.me/drsarah/?p=131', 0, 'revision', '', 0),
(132, 1, '2026-04-05 09:20:07', '2026-04-05 09:20:07', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:20:07', '2026-04-05 09:20:07', '', 10, 'https://mrarif.me/drsarah/?p=132', 0, 'revision', '', 0),
(133, 1, '2026-04-05 09:20:19', '2026-04-05 09:20:19', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:20:19', '2026-04-05 09:20:19', '', 10, 'https://mrarif.me/drsarah/?p=133', 0, 'revision', '', 0),
(134, 1, '2026-04-05 09:20:19', '2026-04-05 09:20:19', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:20:19', '2026-04-05 09:20:19', '', 10, 'https://mrarif.me/drsarah/?p=134', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(135, 1, '2026-04-05 09:20:19', '2026-04-05 09:20:19', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:20:19', '2026-04-05 09:20:19', '', 10, 'https://mrarif.me/drsarah/?p=135', 0, 'revision', '', 0),
(136, 1, '2026-04-05 09:22:46', '2026-04-05 09:22:46', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:22:46', '2026-04-05 09:22:46', '', 10, 'https://mrarif.me/drsarah/?p=136', 0, 'revision', '', 0),
(137, 1, '2026-04-05 09:22:46', '2026-04-05 09:22:46', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:22:46', '2026-04-05 09:22:46', '', 10, 'https://mrarif.me/drsarah/?p=137', 0, 'revision', '', 0),
(138, 1, '2026-04-05 09:22:46', '2026-04-05 09:22:46', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:22:46', '2026-04-05 09:22:46', '', 10, 'https://mrarif.me/drsarah/?p=138', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(139, 1, '2026-04-05 09:24:14', '2026-04-05 09:24:14', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:24:14', '2026-04-05 09:24:14', '', 10, 'https://mrarif.me/drsarah/?p=139', 0, 'revision', '', 0),
(140, 1, '2026-04-05 09:24:14', '2026-04-05 09:24:14', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:24:14', '2026-04-05 09:24:14', '', 10, 'https://mrarif.me/drsarah/?p=140', 0, 'revision', '', 0),
(141, 1, '2026-04-05 09:24:15', '2026-04-05 09:24:15', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:24:15', '2026-04-05 09:24:15', '', 10, 'https://mrarif.me/drsarah/?p=141', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(142, 1, '2026-04-05 09:25:25', '2026-04-05 09:25:25', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:25:25', '2026-04-05 09:25:25', '', 10, 'https://mrarif.me/drsarah/?p=142', 0, 'revision', '', 0),
(143, 1, '2026-04-05 09:25:26', '2026-04-05 09:25:26', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:25:26', '2026-04-05 09:25:26', '', 10, 'https://mrarif.me/drsarah/?p=143', 0, 'revision', '', 0),
(144, 1, '2026-04-05 09:25:26', '2026-04-05 09:25:26', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:25:26', '2026-04-05 09:25:26', '', 10, 'https://mrarif.me/drsarah/?p=144', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(149, 1, '2026-04-05 09:38:06', '2026-04-05 09:38:06', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>				\n							<h3>\n					Certified Specialist in\n					 Prosthodontics\n				</h3>\n					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:38:06', '2026-04-05 09:38:06', '', 10, 'https://mrarif.me/drsarah/?p=149', 0, 'revision', '', 0),
(146, 1, '2026-04-05 09:33:45', '2026-04-05 09:33:45', '', 'Sarah Alabdullah', '', 'inherit', 'open', 'closed', '', 'sarah-alabdullah', '', '', '2026-04-05 09:33:45', '2026-04-05 09:33:45', '', 10, 'https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg', 0, 'attachment', 'image/jpeg', 0),
(147, 1, '2026-04-05 09:38:05', '2026-04-05 09:38:05', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:38:05', '2026-04-05 09:38:05', '', 10, 'https://mrarif.me/drsarah/?p=147', 0, 'revision', '', 0),
(148, 1, '2026-04-05 09:38:06', '2026-04-05 09:38:06', '<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:38:06', '2026-04-05 09:38:06', '', 10, 'https://mrarif.me/drsarah/?p=148', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(150, 1, '2026-04-05 09:40:04', '2026-04-05 09:40:04', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>				\n							<h3>\n					Certified Specialist in\n					 Prosthodontics\n				</h3>\n					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:40:04', '2026-04-05 09:40:04', '', 10, 'https://mrarif.me/drsarah/?p=150', 0, 'revision', '', 0),
(151, 1, '2026-04-05 09:40:04', '2026-04-05 09:40:04', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>				\n							<h3>\n					Certified Specialist in\n					 Prosthodontics\n				</h3>\n					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:40:04', '2026-04-05 09:40:04', '', 10, 'https://mrarif.me/drsarah/?p=151', 0, 'revision', '', 0),
(152, 1, '2026-04-05 09:40:06', '2026-04-05 09:40:06', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:40:06', '2026-04-05 09:40:06', '', 10, 'https://mrarif.me/drsarah/?p=152', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(153, 1, '2026-04-05 09:42:15', '2026-04-05 09:42:15', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:42:15', '2026-04-05 09:42:15', '', 10, 'https://mrarif.me/drsarah/?p=153', 0, 'revision', '', 0),
(154, 1, '2026-04-05 09:42:15', '2026-04-05 09:42:15', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:42:15', '2026-04-05 09:42:15', '', 10, 'https://mrarif.me/drsarah/?p=154', 0, 'revision', '', 0),
(155, 1, '2026-04-05 09:42:15', '2026-04-05 09:42:15', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>			\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:42:15', '2026-04-05 09:42:15', '', 10, 'https://mrarif.me/drsarah/?p=155', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(156, 1, '2026-04-05 09:42:45', '2026-04-05 09:42:45', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>			\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:42:45', '2026-04-05 09:42:45', '', 10, 'https://mrarif.me/drsarah/?p=156', 0, 'revision', '', 0),
(157, 1, '2026-04-05 09:42:45', '2026-04-05 09:42:45', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>			\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:42:45', '2026-04-05 09:42:45', '', 10, 'https://mrarif.me/drsarah/?p=157', 0, 'revision', '', 0),
(158, 1, '2026-04-05 09:42:45', '2026-04-05 09:42:45', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>			\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:42:45', '2026-04-05 09:42:45', '', 10, 'https://mrarif.me/drsarah/?p=158', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(159, 1, '2026-04-05 09:43:08', '2026-04-05 09:43:08', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>			\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:43:08', '2026-04-05 09:43:08', '', 10, 'https://mrarif.me/drsarah/?p=159', 0, 'revision', '', 0),
(160, 1, '2026-04-05 09:43:08', '2026-04-05 09:43:08', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>			\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:43:08', '2026-04-05 09:43:08', '', 10, 'https://mrarif.me/drsarah/?p=160', 0, 'revision', '', 0),
(161, 1, '2026-04-05 09:43:08', '2026-04-05 09:43:08', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>			\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:43:08', '2026-04-05 09:43:08', '', 10, 'https://mrarif.me/drsarah/?p=161', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(162, 1, '2026-04-05 09:43:58', '2026-04-05 09:43:58', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>			\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:43:58', '2026-04-05 09:43:58', '', 10, 'https://mrarif.me/drsarah/?p=162', 0, 'revision', '', 0),
(163, 1, '2026-04-05 09:43:58', '2026-04-05 09:43:58', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>			\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:43:58', '2026-04-05 09:43:58', '', 10, 'https://mrarif.me/drsarah/?p=163', 0, 'revision', '', 0),
(164, 1, '2026-04-05 09:43:58', '2026-04-05 09:43:58', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>			\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:43:58', '2026-04-05 09:43:58', '', 10, 'https://mrarif.me/drsarah/?p=164', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(165, 1, '2026-04-05 09:44:47', '2026-04-05 09:44:47', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>			\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:44:47', '2026-04-05 09:44:47', '', 10, 'https://mrarif.me/drsarah/?p=165', 0, 'revision', '', 0),
(166, 1, '2026-04-05 09:44:47', '2026-04-05 09:44:47', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>			\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:44:47', '2026-04-05 09:44:47', '', 10, 'https://mrarif.me/drsarah/?p=166', 0, 'revision', '', 0),
(167, 1, '2026-04-05 09:44:47', '2026-04-05 09:44:47', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n			<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>			</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:44:47', '2026-04-05 09:44:47', '', 10, 'https://mrarif.me/drsarah/?p=167', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(168, 1, '2026-04-05 09:45:14', '2026-04-05 09:45:14', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n			<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>			</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:45:14', '2026-04-05 09:45:14', '', 10, 'https://mrarif.me/drsarah/?p=168', 0, 'revision', '', 0),
(169, 1, '2026-04-05 09:45:14', '2026-04-05 09:45:14', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n			<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>			</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:45:14', '2026-04-05 09:45:14', '', 10, 'https://mrarif.me/drsarah/?p=169', 0, 'revision', '', 0),
(170, 1, '2026-04-05 09:45:14', '2026-04-05 09:45:14', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n			<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>			</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:45:14', '2026-04-05 09:45:14', '', 10, 'https://mrarif.me/drsarah/?p=170', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(171, 1, '2026-04-05 09:46:16', '2026-04-05 09:46:16', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n			<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>			</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:46:16', '2026-04-05 09:46:16', '', 10, 'https://mrarif.me/drsarah/?p=171', 0, 'revision', '', 0),
(172, 1, '2026-04-05 09:46:16', '2026-04-05 09:46:16', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n			<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>			</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:46:16', '2026-04-05 09:46:16', '', 10, 'https://mrarif.me/drsarah/?p=172', 0, 'revision', '', 0),
(173, 1, '2026-04-05 09:46:17', '2026-04-05 09:46:17', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n			<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>			</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:46:17', '2026-04-05 09:46:17', '', 10, 'https://mrarif.me/drsarah/?p=173', 0, 'revision', '', 0),
(174, 1, '2026-04-05 09:48:55', '2026-04-05 09:48:55', '', 'instagram_1409946 (1)', '', 'inherit', 'open', 'closed', '', 'instagram_1409946-1', '', '', '2026-04-05 09:48:55', '2026-04-05 09:48:55', '', 10, 'https://mrarif.me/drsarah/wp-content/uploads/2026/04/instagram_1409946-1.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(175, 1, '2026-04-05 09:49:27', '2026-04-05 09:49:27', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n			<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>			</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:49:27', '2026-04-05 09:49:27', '', 10, 'https://mrarif.me/drsarah/?p=175', 0, 'revision', '', 0),
(176, 1, '2026-04-05 09:49:27', '2026-04-05 09:49:27', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n			<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>			</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:49:27', '2026-04-05 09:49:27', '', 10, 'https://mrarif.me/drsarah/?p=176', 0, 'revision', '', 0),
(189, 1, '2026-04-05 09:53:13', '2026-04-05 09:53:13', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:53:13', '2026-04-05 09:53:13', '', 10, 'https://mrarif.me/drsarah/?p=189', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(183, 1, '2026-04-05 09:50:27', '2026-04-05 09:50:27', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" height=\"512pt\" viewBox=\"0 0 512 512.00038\" width=\"512pt\"><radialGradient id=\"a\" cx=\"104.9571229418\" cy=\"447.4474330468\" gradientUnits=\"userSpaceOnUse\" r=\"564.64588968\"><stop offset=\"0\" stop-color=\"#fae100\"></stop><stop offset=\".0544\" stop-color=\"#fadc04\"></stop><stop offset=\".1167\" stop-color=\"#fbce0e\"></stop><stop offset=\".1829\" stop-color=\"#fcb720\"></stop><stop offset=\".2514\" stop-color=\"#fe9838\"></stop><stop offset=\".3054\" stop-color=\"#ff7950\"></stop><stop offset=\".4922\" stop-color=\"#ff1c74\"></stop><stop offset=\"1\" stop-color=\"#6c1cd1\"></stop></radialGradient><linearGradient id=\"b\" gradientUnits=\"userSpaceOnUse\" x1=\"196.3726539866\" x2=\"-671.0159540134\" y1=\"222.4596783332\" y2=\"-265.4464136668\"><stop offset=\"0\" stop-color=\"#a1b5d8\" stop-opacity=\"0\"></stop><stop offset=\".3094\" stop-color=\"#90a2bd\" stop-opacity=\".309804\"></stop><stop offset=\".7554\" stop-color=\"#7c8b9c\" stop-opacity=\".756863\"></stop><stop offset=\"1\" stop-color=\"#748290\"></stop></linearGradient><linearGradient id=\"c\" gradientUnits=\"userSpaceOnUse\" x1=\"256.0003\" x2=\"256.0003\" y1=\"451.9660859688\" y2=\"531.773969673\"><stop offset=\"0\" stop-color=\"#fae100\" stop-opacity=\"0\"></stop><stop offset=\".3068\" stop-color=\"#fca800\" stop-opacity=\".305882\"></stop><stop offset=\".6275\" stop-color=\"#fe7300\" stop-opacity=\".627451\"></stop><stop offset=\".8685\" stop-color=\"#ff5200\" stop-opacity=\".866667\"></stop><stop offset=\"1\" stop-color=\"#ff4500\"></stop></linearGradient><linearGradient id=\"d\"><stop offset=\"0\" stop-color=\"#833ab4\" stop-opacity=\"0\"></stop><stop offset=\"1\" stop-color=\"#833ab4\"></stop></linearGradient><linearGradient id=\"e\" gradientUnits=\"userSpaceOnUse\" x1=\"226.8724066998\" x2=\"100.1606848024\" xlink:href=\"#d\" y1=\"226.147987369\" y2=\"99.4361650794\"></linearGradient><linearGradient id=\"f\" gradientUnits=\"userSpaceOnUse\" x1=\"350.899540777\" x2=\"287.6555669352\" xlink:href=\"#d\" y1=\"468.287448276\" y2=\"170.1375727138\"></linearGradient><linearGradient id=\"g\" gradientUnits=\"userSpaceOnUse\" x1=\"374.965057\" x2=\"120.9410670648\" xlink:href=\"#d\" y1=\"374.9649673922\" y2=\"120.9408770648\"></linearGradient><linearGradient id=\"h\" gradientUnits=\"userSpaceOnUse\" x1=\"393.806665096\" x2=\"309.8058007666\" xlink:href=\"#d\" y1=\"221.2631037014\" y2=\"137.2623397642\"></linearGradient><linearGradient id=\"i\" gradientUnits=\"userSpaceOnUse\" x1=\"357.6582448576\" x2=\"150.5426107646\" y1=\"155.0495285836\" y2=\"362.1651626766\"><stop offset=\"0\" stop-color=\"#833ab4\"></stop><stop offset=\".0922\" stop-color=\"#9c3495\"></stop><stop offset=\".2927\" stop-color=\"#dc2546\"></stop><stop offset=\".392\" stop-color=\"#fd1d1d\"></stop><stop offset=\".5589\" stop-color=\"#fc6831\"></stop><stop offset=\".6887\" stop-color=\"#fc9b40\"></stop><stop offset=\".7521\" stop-color=\"#fcaf45\"></stop><stop offset=\".7806\" stop-color=\"#fdb750\"></stop><stop offset=\".8656\" stop-color=\"#fecb6a\"></stop><stop offset=\".9415\" stop-color=\"#ffd87a\"></stop><stop offset=\"1\" stop-color=\"#ffdc80\"></stop></linearGradient><path d=\"m503.234375 91.578125c-4.660156-43.664063-39.144531-78.15625-82.8125-82.8125-109.507813-11.6875-219.335937-11.6875-328.839844 0-43.667969 4.660156-78.15625 39.148437-82.816406 82.8125-11.6875 109.503906-11.6875 219.335937 0 328.839844 4.660156 43.667969 39.148437 78.15625 82.8125 82.816406 109.503906 11.6875 219.335937 11.6875 328.84375 0 43.667969-4.660156 78.152344-39.148437 82.8125-82.816406 11.6875-109.503907 11.6875-219.332031 0-328.839844zm0 0\" fill=\"url(#a)\"></path><path d=\"m475.386719 110.097656c-4.132813-38.746094-34.734375-69.351562-73.484375-73.488281-97.171875-10.367187-194.632813-10.367187-291.804688 0-38.746094 4.136719-69.351562 34.742187-73.488281 73.488281-10.367187 97.171875-10.367187 194.632813 0 291.800782 4.136719 38.75 34.742187 69.355468 73.488281 73.488281 97.171875 10.371093 194.632813 10.371093 291.800782 0 38.75-4.132813 69.355468-34.738281 73.488281-73.488281 10.371093-97.167969 10.371093-194.628907 0-291.800782zm0 0\" fill=\"url(#b)\"></path><path d=\"m7.671875 409.804688c.351563 3.539062.714844 7.078124 1.09375 10.617187 4.660156 43.664063 39.148437 78.152344 82.816406 82.8125 109.503907 11.6875 219.335938 11.6875 328.839844 0 43.667969-4.660156 78.152344-39.148437 82.8125-82.8125.378906-3.539063.742187-7.078125 1.097656-10.617187zm0 0\" fill=\"url(#c)\"></path><path d=\"m503.234375 420.417969c6.28125-58.839844 9.179687-117.773438 8.710937-176.699219l-117.03125-117.03125c-14.621093-16.691406-35.976562-27.109375-61.070312-28.011719-51.605469-1.859375-103.375-1.765625-154.988281.007813-42.867188 1.476562-72.84375 30.289062-80.53125 72.636718-1.355469 7.476563-2.167969 15.050782-3.234375 22.582032v124.148437c.589844 4.023438 1.457031 8.027344 1.726562 12.074219 1.71875 25.757812 12.304688 47.820312 29.253906 62.746094l119.09375 119.089844c58.445313.410156 116.894532-2.496094 175.257813-8.726563 43.667969-4.660156 78.152344-39.148437 82.8125-82.816406zm0 0\" fill=\"url(#e)\"></path><path d=\"m503.234375 420.421875c-4.65625 43.660156-39.152344 78.15625-82.8125 82.8125-58.355469 6.226563-116.816406 9.136719-175.253906 8.726563l-118.914063-118.914063c13.785156 12.066406 31.753906 19.414063 52.605469 20.199219 51.601563 1.9375 103.382813 1.886718 154.984375.027344 46.671875-1.6875 80.445312-36.230469 81.902344-82.902344 1.554687-49.554688 1.554687-99.238282 0-148.792969-.664063-21.53125-8.222656-40.476563-20.753906-54.8125l116.957031 116.957031c.460937 58.917969-2.4375 117.859375-8.714844 176.699219zm0 0\" fill=\"url(#f)\"></path><path d=\"m316.414062 200.558594c-14.992187-16.324219-36.503906-26.566406-60.414062-26.566406-45.289062 0-82.007812 36.71875-82.007812 82.007812 0 23.910156 10.242187 45.421875 26.566406 60.414062l189.738281 189.738282c10.042969-.875 20.085937-1.847656 30.121094-2.917969 43.667969-4.660156 78.15625-39.148437 82.816406-82.816406 1.070313-10.035157 2.042969-20.078125 2.917969-30.121094zm0 0\" fill=\"url(#g)\"></path><path d=\"m511.007812 311.152344-152.703124-152.699219c-3.5625-4.675781-9.175782-7.710937-15.507813-7.710937-10.773437 0-19.511719 8.734374-19.511719 19.511718 0 6.332032 3.035156 11.945313 7.710938 15.507813l177.28125 177.285156c1.203125-17.292969 2.113281-34.59375 2.730468-51.894531zm0 0\" fill=\"url(#h)\"></path><path d=\"m95.089844 193.902344c1.066406-7.53125 1.878906-15.105469 3.234375-22.582032 7.683593-42.347656 37.664062-71.160156 80.53125-72.636718 51.613281-1.773438 103.382812-1.867188 154.988281-.007813 46.65625 1.679688 80.445312 36.226563 81.902344 82.898438 1.550781 49.558593 1.550781 99.238281 0 148.796875-1.457032 46.671875-35.234375 81.214844-81.898438 82.898437-51.605468 1.863281-103.386718 1.910157-154.988281-.027343-46.664063-1.753907-78.921875-36.378907-82.042969-83.121094-.269531-4.042969-1.136718-8.050782-1.726562-12.074219 0-41.382813 0-82.765625 0-124.144531zm160.953125 191.707031c23.617187 0 47.257812.707031 70.84375-.164063 36.980469-1.371093 59.726562-23.441406 60.589843-60.386718 1.070313-46.035156 1.070313-92.132813 0-138.171875-.863281-36.9375-23.625-59.523438-60.589843-60.308594-46.917969-.992187-93.886719-.984375-140.804688 0-36.683593.769531-59.496093 22.898437-60.492187 59.429687-1.265625 46.617188-1.265625 93.316407 0 139.933594.996094 36.527344 23.808594 58.144532 60.496094 59.503906 23.289062.867188 46.636718.164063 69.957031.164063zm0 0\" fill=\"url(#i)\"></path><g fill=\"#fff\"><path d=\"m95.089844 193.902344c1.066406-7.53125 1.878906-15.105469 3.234375-22.582032 7.683593-42.347656 37.664062-71.160156 80.53125-72.636718 51.613281-1.773438 103.382812-1.867188 154.988281-.007813 46.65625 1.679688 80.445312 36.226563 81.902344 82.898438 1.550781 49.558593 1.550781 99.238281 0 148.796875-1.457032 46.671875-35.234375 81.214844-81.898438 82.898437-51.605468 1.863281-103.386718 1.910157-154.988281-.027343-46.664063-1.753907-78.921875-36.378907-82.042969-83.121094-.269531-4.042969-1.136718-8.050782-1.726562-12.074219 0-41.382813 0-82.765625 0-124.144531zm160.953125 191.707031c23.617187 0 47.257812.707031 70.84375-.164063 36.980469-1.371093 59.726562-23.441406 60.589843-60.386718 1.070313-46.035156 1.070313-92.132813 0-138.171875-.863281-36.9375-23.625-59.523438-60.589843-60.308594-46.917969-.992187-93.886719-.984375-140.804688 0-36.683593.769531-59.496093 22.898437-60.492187 59.429687-1.265625 46.617188-1.265625 93.316407 0 139.933594.996094 36.527344 23.808594 58.144532 60.496094 59.503906 23.289062.867188 46.636718.164063 69.957031.164063zm0 0\"></path><path d=\"m256 173.996094c-45.289062 0-82.007812 36.714844-82.007812 82.003906 0 45.292969 36.71875 82.007812 82.007812 82.007812 45.292969 0 82.007812-36.714843 82.007812-82.007812 0-45.289062-36.714843-82.003906-82.007812-82.003906zm0 135.777344c-29.699219 0-53.773438-24.074219-53.773438-53.773438s24.074219-53.773438 53.773438-53.773438 53.773438 24.074219 53.773438 53.773438-24.074219 53.773438-53.773438 53.773438zm0 0\"></path><path d=\"m362.304688 170.253906c0 10.773438-8.734376 19.507813-19.507813 19.507813s-19.511719-8.734375-19.511719-19.507813c0-10.777344 8.738282-19.511718 19.511719-19.511718s19.507813 8.734374 19.507813 19.511718zm0 0\"></path></g></svg>			</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:50:27', '2026-04-05 09:50:27', '', 10, 'https://mrarif.me/drsarah/?p=183', 0, 'revision', '', 0),
(177, 1, '2026-04-05 09:49:27', '2026-04-05 09:49:27', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" height=\"512pt\" viewBox=\"0 0 512 512.00038\" width=\"512pt\"><radialGradient id=\"a\" cx=\"104.9571229418\" cy=\"447.4474330468\" gradientUnits=\"userSpaceOnUse\" r=\"564.64588968\"><stop offset=\"0\" stop-color=\"#fae100\"></stop><stop offset=\".0544\" stop-color=\"#fadc04\"></stop><stop offset=\".1167\" stop-color=\"#fbce0e\"></stop><stop offset=\".1829\" stop-color=\"#fcb720\"></stop><stop offset=\".2514\" stop-color=\"#fe9838\"></stop><stop offset=\".3054\" stop-color=\"#ff7950\"></stop><stop offset=\".4922\" stop-color=\"#ff1c74\"></stop><stop offset=\"1\" stop-color=\"#6c1cd1\"></stop></radialGradient><linearGradient id=\"b\" gradientUnits=\"userSpaceOnUse\" x1=\"196.3726539866\" x2=\"-671.0159540134\" y1=\"222.4596783332\" y2=\"-265.4464136668\"><stop offset=\"0\" stop-color=\"#a1b5d8\" stop-opacity=\"0\"></stop><stop offset=\".3094\" stop-color=\"#90a2bd\" stop-opacity=\".309804\"></stop><stop offset=\".7554\" stop-color=\"#7c8b9c\" stop-opacity=\".756863\"></stop><stop offset=\"1\" stop-color=\"#748290\"></stop></linearGradient><linearGradient id=\"c\" gradientUnits=\"userSpaceOnUse\" x1=\"256.0003\" x2=\"256.0003\" y1=\"451.9660859688\" y2=\"531.773969673\"><stop offset=\"0\" stop-color=\"#fae100\" stop-opacity=\"0\"></stop><stop offset=\".3068\" stop-color=\"#fca800\" stop-opacity=\".305882\"></stop><stop offset=\".6275\" stop-color=\"#fe7300\" stop-opacity=\".627451\"></stop><stop offset=\".8685\" stop-color=\"#ff5200\" stop-opacity=\".866667\"></stop><stop offset=\"1\" stop-color=\"#ff4500\"></stop></linearGradient><linearGradient id=\"d\"><stop offset=\"0\" stop-color=\"#833ab4\" stop-opacity=\"0\"></stop><stop offset=\"1\" stop-color=\"#833ab4\"></stop></linearGradient><linearGradient id=\"e\" gradientUnits=\"userSpaceOnUse\" x1=\"226.8724066998\" x2=\"100.1606848024\" xlink:href=\"#d\" y1=\"226.147987369\" y2=\"99.4361650794\"></linearGradient><linearGradient id=\"f\" gradientUnits=\"userSpaceOnUse\" x1=\"350.899540777\" x2=\"287.6555669352\" xlink:href=\"#d\" y1=\"468.287448276\" y2=\"170.1375727138\"></linearGradient><linearGradient id=\"g\" gradientUnits=\"userSpaceOnUse\" x1=\"374.965057\" x2=\"120.9410670648\" xlink:href=\"#d\" y1=\"374.9649673922\" y2=\"120.9408770648\"></linearGradient><linearGradient id=\"h\" gradientUnits=\"userSpaceOnUse\" x1=\"393.806665096\" x2=\"309.8058007666\" xlink:href=\"#d\" y1=\"221.2631037014\" y2=\"137.2623397642\"></linearGradient><linearGradient id=\"i\" gradientUnits=\"userSpaceOnUse\" x1=\"357.6582448576\" x2=\"150.5426107646\" y1=\"155.0495285836\" y2=\"362.1651626766\"><stop offset=\"0\" stop-color=\"#833ab4\"></stop><stop offset=\".0922\" stop-color=\"#9c3495\"></stop><stop offset=\".2927\" stop-color=\"#dc2546\"></stop><stop offset=\".392\" stop-color=\"#fd1d1d\"></stop><stop offset=\".5589\" stop-color=\"#fc6831\"></stop><stop offset=\".6887\" stop-color=\"#fc9b40\"></stop><stop offset=\".7521\" stop-color=\"#fcaf45\"></stop><stop offset=\".7806\" stop-color=\"#fdb750\"></stop><stop offset=\".8656\" stop-color=\"#fecb6a\"></stop><stop offset=\".9415\" stop-color=\"#ffd87a\"></stop><stop offset=\"1\" stop-color=\"#ffdc80\"></stop></linearGradient><path d=\"m503.234375 91.578125c-4.660156-43.664063-39.144531-78.15625-82.8125-82.8125-109.507813-11.6875-219.335937-11.6875-328.839844 0-43.667969 4.660156-78.15625 39.148437-82.816406 82.8125-11.6875 109.503906-11.6875 219.335937 0 328.839844 4.660156 43.667969 39.148437 78.15625 82.8125 82.816406 109.503906 11.6875 219.335937 11.6875 328.84375 0 43.667969-4.660156 78.152344-39.148437 82.8125-82.816406 11.6875-109.503907 11.6875-219.332031 0-328.839844zm0 0\" fill=\"url(#a)\"></path><path d=\"m475.386719 110.097656c-4.132813-38.746094-34.734375-69.351562-73.484375-73.488281-97.171875-10.367187-194.632813-10.367187-291.804688 0-38.746094 4.136719-69.351562 34.742187-73.488281 73.488281-10.367187 97.171875-10.367187 194.632813 0 291.800782 4.136719 38.75 34.742187 69.355468 73.488281 73.488281 97.171875 10.371093 194.632813 10.371093 291.800782 0 38.75-4.132813 69.355468-34.738281 73.488281-73.488281 10.371093-97.167969 10.371093-194.628907 0-291.800782zm0 0\" fill=\"url(#b)\"></path><path d=\"m7.671875 409.804688c.351563 3.539062.714844 7.078124 1.09375 10.617187 4.660156 43.664063 39.148437 78.152344 82.816406 82.8125 109.503907 11.6875 219.335938 11.6875 328.839844 0 43.667969-4.660156 78.152344-39.148437 82.8125-82.8125.378906-3.539063.742187-7.078125 1.097656-10.617187zm0 0\" fill=\"url(#c)\"></path><path d=\"m503.234375 420.417969c6.28125-58.839844 9.179687-117.773438 8.710937-176.699219l-117.03125-117.03125c-14.621093-16.691406-35.976562-27.109375-61.070312-28.011719-51.605469-1.859375-103.375-1.765625-154.988281.007813-42.867188 1.476562-72.84375 30.289062-80.53125 72.636718-1.355469 7.476563-2.167969 15.050782-3.234375 22.582032v124.148437c.589844 4.023438 1.457031 8.027344 1.726562 12.074219 1.71875 25.757812 12.304688 47.820312 29.253906 62.746094l119.09375 119.089844c58.445313.410156 116.894532-2.496094 175.257813-8.726563 43.667969-4.660156 78.152344-39.148437 82.8125-82.816406zm0 0\" fill=\"url(#e)\"></path><path d=\"m503.234375 420.421875c-4.65625 43.660156-39.152344 78.15625-82.8125 82.8125-58.355469 6.226563-116.816406 9.136719-175.253906 8.726563l-118.914063-118.914063c13.785156 12.066406 31.753906 19.414063 52.605469 20.199219 51.601563 1.9375 103.382813 1.886718 154.984375.027344 46.671875-1.6875 80.445312-36.230469 81.902344-82.902344 1.554687-49.554688 1.554687-99.238282 0-148.792969-.664063-21.53125-8.222656-40.476563-20.753906-54.8125l116.957031 116.957031c.460937 58.917969-2.4375 117.859375-8.714844 176.699219zm0 0\" fill=\"url(#f)\"></path><path d=\"m316.414062 200.558594c-14.992187-16.324219-36.503906-26.566406-60.414062-26.566406-45.289062 0-82.007812 36.71875-82.007812 82.007812 0 23.910156 10.242187 45.421875 26.566406 60.414062l189.738281 189.738282c10.042969-.875 20.085937-1.847656 30.121094-2.917969 43.667969-4.660156 78.15625-39.148437 82.816406-82.816406 1.070313-10.035157 2.042969-20.078125 2.917969-30.121094zm0 0\" fill=\"url(#g)\"></path><path d=\"m511.007812 311.152344-152.703124-152.699219c-3.5625-4.675781-9.175782-7.710937-15.507813-7.710937-10.773437 0-19.511719 8.734374-19.511719 19.511718 0 6.332032 3.035156 11.945313 7.710938 15.507813l177.28125 177.285156c1.203125-17.292969 2.113281-34.59375 2.730468-51.894531zm0 0\" fill=\"url(#h)\"></path><path d=\"m95.089844 193.902344c1.066406-7.53125 1.878906-15.105469 3.234375-22.582032 7.683593-42.347656 37.664062-71.160156 80.53125-72.636718 51.613281-1.773438 103.382812-1.867188 154.988281-.007813 46.65625 1.679688 80.445312 36.226563 81.902344 82.898438 1.550781 49.558593 1.550781 99.238281 0 148.796875-1.457032 46.671875-35.234375 81.214844-81.898438 82.898437-51.605468 1.863281-103.386718 1.910157-154.988281-.027343-46.664063-1.753907-78.921875-36.378907-82.042969-83.121094-.269531-4.042969-1.136718-8.050782-1.726562-12.074219 0-41.382813 0-82.765625 0-124.144531zm160.953125 191.707031c23.617187 0 47.257812.707031 70.84375-.164063 36.980469-1.371093 59.726562-23.441406 60.589843-60.386718 1.070313-46.035156 1.070313-92.132813 0-138.171875-.863281-36.9375-23.625-59.523438-60.589843-60.308594-46.917969-.992187-93.886719-.984375-140.804688 0-36.683593.769531-59.496093 22.898437-60.492187 59.429687-1.265625 46.617188-1.265625 93.316407 0 139.933594.996094 36.527344 23.808594 58.144532 60.496094 59.503906 23.289062.867188 46.636718.164063 69.957031.164063zm0 0\" fill=\"url(#i)\"></path><g fill=\"#fff\"><path d=\"m95.089844 193.902344c1.066406-7.53125 1.878906-15.105469 3.234375-22.582032 7.683593-42.347656 37.664062-71.160156 80.53125-72.636718 51.613281-1.773438 103.382812-1.867188 154.988281-.007813 46.65625 1.679688 80.445312 36.226563 81.902344 82.898438 1.550781 49.558593 1.550781 99.238281 0 148.796875-1.457032 46.671875-35.234375 81.214844-81.898438 82.898437-51.605468 1.863281-103.386718 1.910157-154.988281-.027343-46.664063-1.753907-78.921875-36.378907-82.042969-83.121094-.269531-4.042969-1.136718-8.050782-1.726562-12.074219 0-41.382813 0-82.765625 0-124.144531zm160.953125 191.707031c23.617187 0 47.257812.707031 70.84375-.164063 36.980469-1.371093 59.726562-23.441406 60.589843-60.386718 1.070313-46.035156 1.070313-92.132813 0-138.171875-.863281-36.9375-23.625-59.523438-60.589843-60.308594-46.917969-.992187-93.886719-.984375-140.804688 0-36.683593.769531-59.496093 22.898437-60.492187 59.429687-1.265625 46.617188-1.265625 93.316407 0 139.933594.996094 36.527344 23.808594 58.144532 60.496094 59.503906 23.289062.867188 46.636718.164063 69.957031.164063zm0 0\"></path><path d=\"m256 173.996094c-45.289062 0-82.007812 36.714844-82.007812 82.003906 0 45.292969 36.71875 82.007812 82.007812 82.007812 45.292969 0 82.007812-36.714843 82.007812-82.007812 0-45.289062-36.714843-82.003906-82.007812-82.003906zm0 135.777344c-29.699219 0-53.773438-24.074219-53.773438-53.773438s24.074219-53.773438 53.773438-53.773438 53.773438 24.074219 53.773438 53.773438-24.074219 53.773438-53.773438 53.773438zm0 0\"></path><path d=\"m362.304688 170.253906c0 10.773438-8.734376 19.507813-19.507813 19.507813s-19.511719-8.734375-19.511719-19.507813c0-10.777344 8.738282-19.511718 19.511719-19.511718s19.507813 8.734374 19.507813 19.511718zm0 0\"></path></g></svg>			</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:49:27', '2026-04-05 09:49:27', '', 10, 'https://mrarif.me/drsarah/?p=177', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(178, 1, '2026-04-05 09:49:45', '2026-04-05 09:49:45', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" height=\"512pt\" viewBox=\"0 0 512 512.00038\" width=\"512pt\"><radialGradient id=\"a\" cx=\"104.9571229418\" cy=\"447.4474330468\" gradientUnits=\"userSpaceOnUse\" r=\"564.64588968\"><stop offset=\"0\" stop-color=\"#fae100\"></stop><stop offset=\".0544\" stop-color=\"#fadc04\"></stop><stop offset=\".1167\" stop-color=\"#fbce0e\"></stop><stop offset=\".1829\" stop-color=\"#fcb720\"></stop><stop offset=\".2514\" stop-color=\"#fe9838\"></stop><stop offset=\".3054\" stop-color=\"#ff7950\"></stop><stop offset=\".4922\" stop-color=\"#ff1c74\"></stop><stop offset=\"1\" stop-color=\"#6c1cd1\"></stop></radialGradient><linearGradient id=\"b\" gradientUnits=\"userSpaceOnUse\" x1=\"196.3726539866\" x2=\"-671.0159540134\" y1=\"222.4596783332\" y2=\"-265.4464136668\"><stop offset=\"0\" stop-color=\"#a1b5d8\" stop-opacity=\"0\"></stop><stop offset=\".3094\" stop-color=\"#90a2bd\" stop-opacity=\".309804\"></stop><stop offset=\".7554\" stop-color=\"#7c8b9c\" stop-opacity=\".756863\"></stop><stop offset=\"1\" stop-color=\"#748290\"></stop></linearGradient><linearGradient id=\"c\" gradientUnits=\"userSpaceOnUse\" x1=\"256.0003\" x2=\"256.0003\" y1=\"451.9660859688\" y2=\"531.773969673\"><stop offset=\"0\" stop-color=\"#fae100\" stop-opacity=\"0\"></stop><stop offset=\".3068\" stop-color=\"#fca800\" stop-opacity=\".305882\"></stop><stop offset=\".6275\" stop-color=\"#fe7300\" stop-opacity=\".627451\"></stop><stop offset=\".8685\" stop-color=\"#ff5200\" stop-opacity=\".866667\"></stop><stop offset=\"1\" stop-color=\"#ff4500\"></stop></linearGradient><linearGradient id=\"d\"><stop offset=\"0\" stop-color=\"#833ab4\" stop-opacity=\"0\"></stop><stop offset=\"1\" stop-color=\"#833ab4\"></stop></linearGradient><linearGradient id=\"e\" gradientUnits=\"userSpaceOnUse\" x1=\"226.8724066998\" x2=\"100.1606848024\" xlink:href=\"#d\" y1=\"226.147987369\" y2=\"99.4361650794\"></linearGradient><linearGradient id=\"f\" gradientUnits=\"userSpaceOnUse\" x1=\"350.899540777\" x2=\"287.6555669352\" xlink:href=\"#d\" y1=\"468.287448276\" y2=\"170.1375727138\"></linearGradient><linearGradient id=\"g\" gradientUnits=\"userSpaceOnUse\" x1=\"374.965057\" x2=\"120.9410670648\" xlink:href=\"#d\" y1=\"374.9649673922\" y2=\"120.9408770648\"></linearGradient><linearGradient id=\"h\" gradientUnits=\"userSpaceOnUse\" x1=\"393.806665096\" x2=\"309.8058007666\" xlink:href=\"#d\" y1=\"221.2631037014\" y2=\"137.2623397642\"></linearGradient><linearGradient id=\"i\" gradientUnits=\"userSpaceOnUse\" x1=\"357.6582448576\" x2=\"150.5426107646\" y1=\"155.0495285836\" y2=\"362.1651626766\"><stop offset=\"0\" stop-color=\"#833ab4\"></stop><stop offset=\".0922\" stop-color=\"#9c3495\"></stop><stop offset=\".2927\" stop-color=\"#dc2546\"></stop><stop offset=\".392\" stop-color=\"#fd1d1d\"></stop><stop offset=\".5589\" stop-color=\"#fc6831\"></stop><stop offset=\".6887\" stop-color=\"#fc9b40\"></stop><stop offset=\".7521\" stop-color=\"#fcaf45\"></stop><stop offset=\".7806\" stop-color=\"#fdb750\"></stop><stop offset=\".8656\" stop-color=\"#fecb6a\"></stop><stop offset=\".9415\" stop-color=\"#ffd87a\"></stop><stop offset=\"1\" stop-color=\"#ffdc80\"></stop></linearGradient><path d=\"m503.234375 91.578125c-4.660156-43.664063-39.144531-78.15625-82.8125-82.8125-109.507813-11.6875-219.335937-11.6875-328.839844 0-43.667969 4.660156-78.15625 39.148437-82.816406 82.8125-11.6875 109.503906-11.6875 219.335937 0 328.839844 4.660156 43.667969 39.148437 78.15625 82.8125 82.816406 109.503906 11.6875 219.335937 11.6875 328.84375 0 43.667969-4.660156 78.152344-39.148437 82.8125-82.816406 11.6875-109.503907 11.6875-219.332031 0-328.839844zm0 0\" fill=\"url(#a)\"></path><path d=\"m475.386719 110.097656c-4.132813-38.746094-34.734375-69.351562-73.484375-73.488281-97.171875-10.367187-194.632813-10.367187-291.804688 0-38.746094 4.136719-69.351562 34.742187-73.488281 73.488281-10.367187 97.171875-10.367187 194.632813 0 291.800782 4.136719 38.75 34.742187 69.355468 73.488281 73.488281 97.171875 10.371093 194.632813 10.371093 291.800782 0 38.75-4.132813 69.355468-34.738281 73.488281-73.488281 10.371093-97.167969 10.371093-194.628907 0-291.800782zm0 0\" fill=\"url(#b)\"></path><path d=\"m7.671875 409.804688c.351563 3.539062.714844 7.078124 1.09375 10.617187 4.660156 43.664063 39.148437 78.152344 82.816406 82.8125 109.503907 11.6875 219.335938 11.6875 328.839844 0 43.667969-4.660156 78.152344-39.148437 82.8125-82.8125.378906-3.539063.742187-7.078125 1.097656-10.617187zm0 0\" fill=\"url(#c)\"></path><path d=\"m503.234375 420.417969c6.28125-58.839844 9.179687-117.773438 8.710937-176.699219l-117.03125-117.03125c-14.621093-16.691406-35.976562-27.109375-61.070312-28.011719-51.605469-1.859375-103.375-1.765625-154.988281.007813-42.867188 1.476562-72.84375 30.289062-80.53125 72.636718-1.355469 7.476563-2.167969 15.050782-3.234375 22.582032v124.148437c.589844 4.023438 1.457031 8.027344 1.726562 12.074219 1.71875 25.757812 12.304688 47.820312 29.253906 62.746094l119.09375 119.089844c58.445313.410156 116.894532-2.496094 175.257813-8.726563 43.667969-4.660156 78.152344-39.148437 82.8125-82.816406zm0 0\" fill=\"url(#e)\"></path><path d=\"m503.234375 420.421875c-4.65625 43.660156-39.152344 78.15625-82.8125 82.8125-58.355469 6.226563-116.816406 9.136719-175.253906 8.726563l-118.914063-118.914063c13.785156 12.066406 31.753906 19.414063 52.605469 20.199219 51.601563 1.9375 103.382813 1.886718 154.984375.027344 46.671875-1.6875 80.445312-36.230469 81.902344-82.902344 1.554687-49.554688 1.554687-99.238282 0-148.792969-.664063-21.53125-8.222656-40.476563-20.753906-54.8125l116.957031 116.957031c.460937 58.917969-2.4375 117.859375-8.714844 176.699219zm0 0\" fill=\"url(#f)\"></path><path d=\"m316.414062 200.558594c-14.992187-16.324219-36.503906-26.566406-60.414062-26.566406-45.289062 0-82.007812 36.71875-82.007812 82.007812 0 23.910156 10.242187 45.421875 26.566406 60.414062l189.738281 189.738282c10.042969-.875 20.085937-1.847656 30.121094-2.917969 43.667969-4.660156 78.15625-39.148437 82.816406-82.816406 1.070313-10.035157 2.042969-20.078125 2.917969-30.121094zm0 0\" fill=\"url(#g)\"></path><path d=\"m511.007812 311.152344-152.703124-152.699219c-3.5625-4.675781-9.175782-7.710937-15.507813-7.710937-10.773437 0-19.511719 8.734374-19.511719 19.511718 0 6.332032 3.035156 11.945313 7.710938 15.507813l177.28125 177.285156c1.203125-17.292969 2.113281-34.59375 2.730468-51.894531zm0 0\" fill=\"url(#h)\"></path><path d=\"m95.089844 193.902344c1.066406-7.53125 1.878906-15.105469 3.234375-22.582032 7.683593-42.347656 37.664062-71.160156 80.53125-72.636718 51.613281-1.773438 103.382812-1.867188 154.988281-.007813 46.65625 1.679688 80.445312 36.226563 81.902344 82.898438 1.550781 49.558593 1.550781 99.238281 0 148.796875-1.457032 46.671875-35.234375 81.214844-81.898438 82.898437-51.605468 1.863281-103.386718 1.910157-154.988281-.027343-46.664063-1.753907-78.921875-36.378907-82.042969-83.121094-.269531-4.042969-1.136718-8.050782-1.726562-12.074219 0-41.382813 0-82.765625 0-124.144531zm160.953125 191.707031c23.617187 0 47.257812.707031 70.84375-.164063 36.980469-1.371093 59.726562-23.441406 60.589843-60.386718 1.070313-46.035156 1.070313-92.132813 0-138.171875-.863281-36.9375-23.625-59.523438-60.589843-60.308594-46.917969-.992187-93.886719-.984375-140.804688 0-36.683593.769531-59.496093 22.898437-60.492187 59.429687-1.265625 46.617188-1.265625 93.316407 0 139.933594.996094 36.527344 23.808594 58.144532 60.496094 59.503906 23.289062.867188 46.636718.164063 69.957031.164063zm0 0\" fill=\"url(#i)\"></path><g fill=\"#fff\"><path d=\"m95.089844 193.902344c1.066406-7.53125 1.878906-15.105469 3.234375-22.582032 7.683593-42.347656 37.664062-71.160156 80.53125-72.636718 51.613281-1.773438 103.382812-1.867188 154.988281-.007813 46.65625 1.679688 80.445312 36.226563 81.902344 82.898438 1.550781 49.558593 1.550781 99.238281 0 148.796875-1.457032 46.671875-35.234375 81.214844-81.898438 82.898437-51.605468 1.863281-103.386718 1.910157-154.988281-.027343-46.664063-1.753907-78.921875-36.378907-82.042969-83.121094-.269531-4.042969-1.136718-8.050782-1.726562-12.074219 0-41.382813 0-82.765625 0-124.144531zm160.953125 191.707031c23.617187 0 47.257812.707031 70.84375-.164063 36.980469-1.371093 59.726562-23.441406 60.589843-60.386718 1.070313-46.035156 1.070313-92.132813 0-138.171875-.863281-36.9375-23.625-59.523438-60.589843-60.308594-46.917969-.992187-93.886719-.984375-140.804688 0-36.683593.769531-59.496093 22.898437-60.492187 59.429687-1.265625 46.617188-1.265625 93.316407 0 139.933594.996094 36.527344 23.808594 58.144532 60.496094 59.503906 23.289062.867188 46.636718.164063 69.957031.164063zm0 0\"></path><path d=\"m256 173.996094c-45.289062 0-82.007812 36.714844-82.007812 82.003906 0 45.292969 36.71875 82.007812 82.007812 82.007812 45.292969 0 82.007812-36.714843 82.007812-82.007812 0-45.289062-36.714843-82.003906-82.007812-82.003906zm0 135.777344c-29.699219 0-53.773438-24.074219-53.773438-53.773438s24.074219-53.773438 53.773438-53.773438 53.773438 24.074219 53.773438 53.773438-24.074219 53.773438-53.773438 53.773438zm0 0\"></path><path d=\"m362.304688 170.253906c0 10.773438-8.734376 19.507813-19.507813 19.507813s-19.511719-8.734375-19.511719-19.507813c0-10.777344 8.738282-19.511718 19.511719-19.511718s19.507813 8.734374 19.507813 19.511718zm0 0\"></path></g></svg>			</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:49:45', '2026-04-05 09:49:45', '', 10, 'https://mrarif.me/drsarah/?p=178', 0, 'revision', '', 0),
(179, 1, '2026-04-05 09:49:45', '2026-04-05 09:49:45', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" height=\"512pt\" viewBox=\"0 0 512 512.00038\" width=\"512pt\"><radialGradient id=\"a\" cx=\"104.9571229418\" cy=\"447.4474330468\" gradientUnits=\"userSpaceOnUse\" r=\"564.64588968\"><stop offset=\"0\" stop-color=\"#fae100\"></stop><stop offset=\".0544\" stop-color=\"#fadc04\"></stop><stop offset=\".1167\" stop-color=\"#fbce0e\"></stop><stop offset=\".1829\" stop-color=\"#fcb720\"></stop><stop offset=\".2514\" stop-color=\"#fe9838\"></stop><stop offset=\".3054\" stop-color=\"#ff7950\"></stop><stop offset=\".4922\" stop-color=\"#ff1c74\"></stop><stop offset=\"1\" stop-color=\"#6c1cd1\"></stop></radialGradient><linearGradient id=\"b\" gradientUnits=\"userSpaceOnUse\" x1=\"196.3726539866\" x2=\"-671.0159540134\" y1=\"222.4596783332\" y2=\"-265.4464136668\"><stop offset=\"0\" stop-color=\"#a1b5d8\" stop-opacity=\"0\"></stop><stop offset=\".3094\" stop-color=\"#90a2bd\" stop-opacity=\".309804\"></stop><stop offset=\".7554\" stop-color=\"#7c8b9c\" stop-opacity=\".756863\"></stop><stop offset=\"1\" stop-color=\"#748290\"></stop></linearGradient><linearGradient id=\"c\" gradientUnits=\"userSpaceOnUse\" x1=\"256.0003\" x2=\"256.0003\" y1=\"451.9660859688\" y2=\"531.773969673\"><stop offset=\"0\" stop-color=\"#fae100\" stop-opacity=\"0\"></stop><stop offset=\".3068\" stop-color=\"#fca800\" stop-opacity=\".305882\"></stop><stop offset=\".6275\" stop-color=\"#fe7300\" stop-opacity=\".627451\"></stop><stop offset=\".8685\" stop-color=\"#ff5200\" stop-opacity=\".866667\"></stop><stop offset=\"1\" stop-color=\"#ff4500\"></stop></linearGradient><linearGradient id=\"d\"><stop offset=\"0\" stop-color=\"#833ab4\" stop-opacity=\"0\"></stop><stop offset=\"1\" stop-color=\"#833ab4\"></stop></linearGradient><linearGradient id=\"e\" gradientUnits=\"userSpaceOnUse\" x1=\"226.8724066998\" x2=\"100.1606848024\" xlink:href=\"#d\" y1=\"226.147987369\" y2=\"99.4361650794\"></linearGradient><linearGradient id=\"f\" gradientUnits=\"userSpaceOnUse\" x1=\"350.899540777\" x2=\"287.6555669352\" xlink:href=\"#d\" y1=\"468.287448276\" y2=\"170.1375727138\"></linearGradient><linearGradient id=\"g\" gradientUnits=\"userSpaceOnUse\" x1=\"374.965057\" x2=\"120.9410670648\" xlink:href=\"#d\" y1=\"374.9649673922\" y2=\"120.9408770648\"></linearGradient><linearGradient id=\"h\" gradientUnits=\"userSpaceOnUse\" x1=\"393.806665096\" x2=\"309.8058007666\" xlink:href=\"#d\" y1=\"221.2631037014\" y2=\"137.2623397642\"></linearGradient><linearGradient id=\"i\" gradientUnits=\"userSpaceOnUse\" x1=\"357.6582448576\" x2=\"150.5426107646\" y1=\"155.0495285836\" y2=\"362.1651626766\"><stop offset=\"0\" stop-color=\"#833ab4\"></stop><stop offset=\".0922\" stop-color=\"#9c3495\"></stop><stop offset=\".2927\" stop-color=\"#dc2546\"></stop><stop offset=\".392\" stop-color=\"#fd1d1d\"></stop><stop offset=\".5589\" stop-color=\"#fc6831\"></stop><stop offset=\".6887\" stop-color=\"#fc9b40\"></stop><stop offset=\".7521\" stop-color=\"#fcaf45\"></stop><stop offset=\".7806\" stop-color=\"#fdb750\"></stop><stop offset=\".8656\" stop-color=\"#fecb6a\"></stop><stop offset=\".9415\" stop-color=\"#ffd87a\"></stop><stop offset=\"1\" stop-color=\"#ffdc80\"></stop></linearGradient><path d=\"m503.234375 91.578125c-4.660156-43.664063-39.144531-78.15625-82.8125-82.8125-109.507813-11.6875-219.335937-11.6875-328.839844 0-43.667969 4.660156-78.15625 39.148437-82.816406 82.8125-11.6875 109.503906-11.6875 219.335937 0 328.839844 4.660156 43.667969 39.148437 78.15625 82.8125 82.816406 109.503906 11.6875 219.335937 11.6875 328.84375 0 43.667969-4.660156 78.152344-39.148437 82.8125-82.816406 11.6875-109.503907 11.6875-219.332031 0-328.839844zm0 0\" fill=\"url(#a)\"></path><path d=\"m475.386719 110.097656c-4.132813-38.746094-34.734375-69.351562-73.484375-73.488281-97.171875-10.367187-194.632813-10.367187-291.804688 0-38.746094 4.136719-69.351562 34.742187-73.488281 73.488281-10.367187 97.171875-10.367187 194.632813 0 291.800782 4.136719 38.75 34.742187 69.355468 73.488281 73.488281 97.171875 10.371093 194.632813 10.371093 291.800782 0 38.75-4.132813 69.355468-34.738281 73.488281-73.488281 10.371093-97.167969 10.371093-194.628907 0-291.800782zm0 0\" fill=\"url(#b)\"></path><path d=\"m7.671875 409.804688c.351563 3.539062.714844 7.078124 1.09375 10.617187 4.660156 43.664063 39.148437 78.152344 82.816406 82.8125 109.503907 11.6875 219.335938 11.6875 328.839844 0 43.667969-4.660156 78.152344-39.148437 82.8125-82.8125.378906-3.539063.742187-7.078125 1.097656-10.617187zm0 0\" fill=\"url(#c)\"></path><path d=\"m503.234375 420.417969c6.28125-58.839844 9.179687-117.773438 8.710937-176.699219l-117.03125-117.03125c-14.621093-16.691406-35.976562-27.109375-61.070312-28.011719-51.605469-1.859375-103.375-1.765625-154.988281.007813-42.867188 1.476562-72.84375 30.289062-80.53125 72.636718-1.355469 7.476563-2.167969 15.050782-3.234375 22.582032v124.148437c.589844 4.023438 1.457031 8.027344 1.726562 12.074219 1.71875 25.757812 12.304688 47.820312 29.253906 62.746094l119.09375 119.089844c58.445313.410156 116.894532-2.496094 175.257813-8.726563 43.667969-4.660156 78.152344-39.148437 82.8125-82.816406zm0 0\" fill=\"url(#e)\"></path><path d=\"m503.234375 420.421875c-4.65625 43.660156-39.152344 78.15625-82.8125 82.8125-58.355469 6.226563-116.816406 9.136719-175.253906 8.726563l-118.914063-118.914063c13.785156 12.066406 31.753906 19.414063 52.605469 20.199219 51.601563 1.9375 103.382813 1.886718 154.984375.027344 46.671875-1.6875 80.445312-36.230469 81.902344-82.902344 1.554687-49.554688 1.554687-99.238282 0-148.792969-.664063-21.53125-8.222656-40.476563-20.753906-54.8125l116.957031 116.957031c.460937 58.917969-2.4375 117.859375-8.714844 176.699219zm0 0\" fill=\"url(#f)\"></path><path d=\"m316.414062 200.558594c-14.992187-16.324219-36.503906-26.566406-60.414062-26.566406-45.289062 0-82.007812 36.71875-82.007812 82.007812 0 23.910156 10.242187 45.421875 26.566406 60.414062l189.738281 189.738282c10.042969-.875 20.085937-1.847656 30.121094-2.917969 43.667969-4.660156 78.15625-39.148437 82.816406-82.816406 1.070313-10.035157 2.042969-20.078125 2.917969-30.121094zm0 0\" fill=\"url(#g)\"></path><path d=\"m511.007812 311.152344-152.703124-152.699219c-3.5625-4.675781-9.175782-7.710937-15.507813-7.710937-10.773437 0-19.511719 8.734374-19.511719 19.511718 0 6.332032 3.035156 11.945313 7.710938 15.507813l177.28125 177.285156c1.203125-17.292969 2.113281-34.59375 2.730468-51.894531zm0 0\" fill=\"url(#h)\"></path><path d=\"m95.089844 193.902344c1.066406-7.53125 1.878906-15.105469 3.234375-22.582032 7.683593-42.347656 37.664062-71.160156 80.53125-72.636718 51.613281-1.773438 103.382812-1.867188 154.988281-.007813 46.65625 1.679688 80.445312 36.226563 81.902344 82.898438 1.550781 49.558593 1.550781 99.238281 0 148.796875-1.457032 46.671875-35.234375 81.214844-81.898438 82.898437-51.605468 1.863281-103.386718 1.910157-154.988281-.027343-46.664063-1.753907-78.921875-36.378907-82.042969-83.121094-.269531-4.042969-1.136718-8.050782-1.726562-12.074219 0-41.382813 0-82.765625 0-124.144531zm160.953125 191.707031c23.617187 0 47.257812.707031 70.84375-.164063 36.980469-1.371093 59.726562-23.441406 60.589843-60.386718 1.070313-46.035156 1.070313-92.132813 0-138.171875-.863281-36.9375-23.625-59.523438-60.589843-60.308594-46.917969-.992187-93.886719-.984375-140.804688 0-36.683593.769531-59.496093 22.898437-60.492187 59.429687-1.265625 46.617188-1.265625 93.316407 0 139.933594.996094 36.527344 23.808594 58.144532 60.496094 59.503906 23.289062.867188 46.636718.164063 69.957031.164063zm0 0\" fill=\"url(#i)\"></path><g fill=\"#fff\"><path d=\"m95.089844 193.902344c1.066406-7.53125 1.878906-15.105469 3.234375-22.582032 7.683593-42.347656 37.664062-71.160156 80.53125-72.636718 51.613281-1.773438 103.382812-1.867188 154.988281-.007813 46.65625 1.679688 80.445312 36.226563 81.902344 82.898438 1.550781 49.558593 1.550781 99.238281 0 148.796875-1.457032 46.671875-35.234375 81.214844-81.898438 82.898437-51.605468 1.863281-103.386718 1.910157-154.988281-.027343-46.664063-1.753907-78.921875-36.378907-82.042969-83.121094-.269531-4.042969-1.136718-8.050782-1.726562-12.074219 0-41.382813 0-82.765625 0-124.144531zm160.953125 191.707031c23.617187 0 47.257812.707031 70.84375-.164063 36.980469-1.371093 59.726562-23.441406 60.589843-60.386718 1.070313-46.035156 1.070313-92.132813 0-138.171875-.863281-36.9375-23.625-59.523438-60.589843-60.308594-46.917969-.992187-93.886719-.984375-140.804688 0-36.683593.769531-59.496093 22.898437-60.492187 59.429687-1.265625 46.617188-1.265625 93.316407 0 139.933594.996094 36.527344 23.808594 58.144532 60.496094 59.503906 23.289062.867188 46.636718.164063 69.957031.164063zm0 0\"></path><path d=\"m256 173.996094c-45.289062 0-82.007812 36.714844-82.007812 82.003906 0 45.292969 36.71875 82.007812 82.007812 82.007812 45.292969 0 82.007812-36.714843 82.007812-82.007812 0-45.289062-36.714843-82.003906-82.007812-82.003906zm0 135.777344c-29.699219 0-53.773438-24.074219-53.773438-53.773438s24.074219-53.773438 53.773438-53.773438 53.773438 24.074219 53.773438 53.773438-24.074219 53.773438-53.773438 53.773438zm0 0\"></path><path d=\"m362.304688 170.253906c0 10.773438-8.734376 19.507813-19.507813 19.507813s-19.511719-8.734375-19.511719-19.507813c0-10.777344 8.738282-19.511718 19.511719-19.511718s19.507813 8.734374 19.507813 19.511718zm0 0\"></path></g></svg>			</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:49:45', '2026-04-05 09:49:45', '', 10, 'https://mrarif.me/drsarah/?p=179', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(180, 1, '2026-04-05 09:49:45', '2026-04-05 09:49:45', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" height=\"512pt\" viewBox=\"0 0 512 512.00038\" width=\"512pt\"><radialGradient id=\"a\" cx=\"104.9571229418\" cy=\"447.4474330468\" gradientUnits=\"userSpaceOnUse\" r=\"564.64588968\"><stop offset=\"0\" stop-color=\"#fae100\"></stop><stop offset=\".0544\" stop-color=\"#fadc04\"></stop><stop offset=\".1167\" stop-color=\"#fbce0e\"></stop><stop offset=\".1829\" stop-color=\"#fcb720\"></stop><stop offset=\".2514\" stop-color=\"#fe9838\"></stop><stop offset=\".3054\" stop-color=\"#ff7950\"></stop><stop offset=\".4922\" stop-color=\"#ff1c74\"></stop><stop offset=\"1\" stop-color=\"#6c1cd1\"></stop></radialGradient><linearGradient id=\"b\" gradientUnits=\"userSpaceOnUse\" x1=\"196.3726539866\" x2=\"-671.0159540134\" y1=\"222.4596783332\" y2=\"-265.4464136668\"><stop offset=\"0\" stop-color=\"#a1b5d8\" stop-opacity=\"0\"></stop><stop offset=\".3094\" stop-color=\"#90a2bd\" stop-opacity=\".309804\"></stop><stop offset=\".7554\" stop-color=\"#7c8b9c\" stop-opacity=\".756863\"></stop><stop offset=\"1\" stop-color=\"#748290\"></stop></linearGradient><linearGradient id=\"c\" gradientUnits=\"userSpaceOnUse\" x1=\"256.0003\" x2=\"256.0003\" y1=\"451.9660859688\" y2=\"531.773969673\"><stop offset=\"0\" stop-color=\"#fae100\" stop-opacity=\"0\"></stop><stop offset=\".3068\" stop-color=\"#fca800\" stop-opacity=\".305882\"></stop><stop offset=\".6275\" stop-color=\"#fe7300\" stop-opacity=\".627451\"></stop><stop offset=\".8685\" stop-color=\"#ff5200\" stop-opacity=\".866667\"></stop><stop offset=\"1\" stop-color=\"#ff4500\"></stop></linearGradient><linearGradient id=\"d\"><stop offset=\"0\" stop-color=\"#833ab4\" stop-opacity=\"0\"></stop><stop offset=\"1\" stop-color=\"#833ab4\"></stop></linearGradient><linearGradient id=\"e\" gradientUnits=\"userSpaceOnUse\" x1=\"226.8724066998\" x2=\"100.1606848024\" xlink:href=\"#d\" y1=\"226.147987369\" y2=\"99.4361650794\"></linearGradient><linearGradient id=\"f\" gradientUnits=\"userSpaceOnUse\" x1=\"350.899540777\" x2=\"287.6555669352\" xlink:href=\"#d\" y1=\"468.287448276\" y2=\"170.1375727138\"></linearGradient><linearGradient id=\"g\" gradientUnits=\"userSpaceOnUse\" x1=\"374.965057\" x2=\"120.9410670648\" xlink:href=\"#d\" y1=\"374.9649673922\" y2=\"120.9408770648\"></linearGradient><linearGradient id=\"h\" gradientUnits=\"userSpaceOnUse\" x1=\"393.806665096\" x2=\"309.8058007666\" xlink:href=\"#d\" y1=\"221.2631037014\" y2=\"137.2623397642\"></linearGradient><linearGradient id=\"i\" gradientUnits=\"userSpaceOnUse\" x1=\"357.6582448576\" x2=\"150.5426107646\" y1=\"155.0495285836\" y2=\"362.1651626766\"><stop offset=\"0\" stop-color=\"#833ab4\"></stop><stop offset=\".0922\" stop-color=\"#9c3495\"></stop><stop offset=\".2927\" stop-color=\"#dc2546\"></stop><stop offset=\".392\" stop-color=\"#fd1d1d\"></stop><stop offset=\".5589\" stop-color=\"#fc6831\"></stop><stop offset=\".6887\" stop-color=\"#fc9b40\"></stop><stop offset=\".7521\" stop-color=\"#fcaf45\"></stop><stop offset=\".7806\" stop-color=\"#fdb750\"></stop><stop offset=\".8656\" stop-color=\"#fecb6a\"></stop><stop offset=\".9415\" stop-color=\"#ffd87a\"></stop><stop offset=\"1\" stop-color=\"#ffdc80\"></stop></linearGradient><path d=\"m503.234375 91.578125c-4.660156-43.664063-39.144531-78.15625-82.8125-82.8125-109.507813-11.6875-219.335937-11.6875-328.839844 0-43.667969 4.660156-78.15625 39.148437-82.816406 82.8125-11.6875 109.503906-11.6875 219.335937 0 328.839844 4.660156 43.667969 39.148437 78.15625 82.8125 82.816406 109.503906 11.6875 219.335937 11.6875 328.84375 0 43.667969-4.660156 78.152344-39.148437 82.8125-82.816406 11.6875-109.503907 11.6875-219.332031 0-328.839844zm0 0\" fill=\"url(#a)\"></path><path d=\"m475.386719 110.097656c-4.132813-38.746094-34.734375-69.351562-73.484375-73.488281-97.171875-10.367187-194.632813-10.367187-291.804688 0-38.746094 4.136719-69.351562 34.742187-73.488281 73.488281-10.367187 97.171875-10.367187 194.632813 0 291.800782 4.136719 38.75 34.742187 69.355468 73.488281 73.488281 97.171875 10.371093 194.632813 10.371093 291.800782 0 38.75-4.132813 69.355468-34.738281 73.488281-73.488281 10.371093-97.167969 10.371093-194.628907 0-291.800782zm0 0\" fill=\"url(#b)\"></path><path d=\"m7.671875 409.804688c.351563 3.539062.714844 7.078124 1.09375 10.617187 4.660156 43.664063 39.148437 78.152344 82.816406 82.8125 109.503907 11.6875 219.335938 11.6875 328.839844 0 43.667969-4.660156 78.152344-39.148437 82.8125-82.8125.378906-3.539063.742187-7.078125 1.097656-10.617187zm0 0\" fill=\"url(#c)\"></path><path d=\"m503.234375 420.417969c6.28125-58.839844 9.179687-117.773438 8.710937-176.699219l-117.03125-117.03125c-14.621093-16.691406-35.976562-27.109375-61.070312-28.011719-51.605469-1.859375-103.375-1.765625-154.988281.007813-42.867188 1.476562-72.84375 30.289062-80.53125 72.636718-1.355469 7.476563-2.167969 15.050782-3.234375 22.582032v124.148437c.589844 4.023438 1.457031 8.027344 1.726562 12.074219 1.71875 25.757812 12.304688 47.820312 29.253906 62.746094l119.09375 119.089844c58.445313.410156 116.894532-2.496094 175.257813-8.726563 43.667969-4.660156 78.152344-39.148437 82.8125-82.816406zm0 0\" fill=\"url(#e)\"></path><path d=\"m503.234375 420.421875c-4.65625 43.660156-39.152344 78.15625-82.8125 82.8125-58.355469 6.226563-116.816406 9.136719-175.253906 8.726563l-118.914063-118.914063c13.785156 12.066406 31.753906 19.414063 52.605469 20.199219 51.601563 1.9375 103.382813 1.886718 154.984375.027344 46.671875-1.6875 80.445312-36.230469 81.902344-82.902344 1.554687-49.554688 1.554687-99.238282 0-148.792969-.664063-21.53125-8.222656-40.476563-20.753906-54.8125l116.957031 116.957031c.460937 58.917969-2.4375 117.859375-8.714844 176.699219zm0 0\" fill=\"url(#f)\"></path><path d=\"m316.414062 200.558594c-14.992187-16.324219-36.503906-26.566406-60.414062-26.566406-45.289062 0-82.007812 36.71875-82.007812 82.007812 0 23.910156 10.242187 45.421875 26.566406 60.414062l189.738281 189.738282c10.042969-.875 20.085937-1.847656 30.121094-2.917969 43.667969-4.660156 78.15625-39.148437 82.816406-82.816406 1.070313-10.035157 2.042969-20.078125 2.917969-30.121094zm0 0\" fill=\"url(#g)\"></path><path d=\"m511.007812 311.152344-152.703124-152.699219c-3.5625-4.675781-9.175782-7.710937-15.507813-7.710937-10.773437 0-19.511719 8.734374-19.511719 19.511718 0 6.332032 3.035156 11.945313 7.710938 15.507813l177.28125 177.285156c1.203125-17.292969 2.113281-34.59375 2.730468-51.894531zm0 0\" fill=\"url(#h)\"></path><path d=\"m95.089844 193.902344c1.066406-7.53125 1.878906-15.105469 3.234375-22.582032 7.683593-42.347656 37.664062-71.160156 80.53125-72.636718 51.613281-1.773438 103.382812-1.867188 154.988281-.007813 46.65625 1.679688 80.445312 36.226563 81.902344 82.898438 1.550781 49.558593 1.550781 99.238281 0 148.796875-1.457032 46.671875-35.234375 81.214844-81.898438 82.898437-51.605468 1.863281-103.386718 1.910157-154.988281-.027343-46.664063-1.753907-78.921875-36.378907-82.042969-83.121094-.269531-4.042969-1.136718-8.050782-1.726562-12.074219 0-41.382813 0-82.765625 0-124.144531zm160.953125 191.707031c23.617187 0 47.257812.707031 70.84375-.164063 36.980469-1.371093 59.726562-23.441406 60.589843-60.386718 1.070313-46.035156 1.070313-92.132813 0-138.171875-.863281-36.9375-23.625-59.523438-60.589843-60.308594-46.917969-.992187-93.886719-.984375-140.804688 0-36.683593.769531-59.496093 22.898437-60.492187 59.429687-1.265625 46.617188-1.265625 93.316407 0 139.933594.996094 36.527344 23.808594 58.144532 60.496094 59.503906 23.289062.867188 46.636718.164063 69.957031.164063zm0 0\" fill=\"url(#i)\"></path><g fill=\"#fff\"><path d=\"m95.089844 193.902344c1.066406-7.53125 1.878906-15.105469 3.234375-22.582032 7.683593-42.347656 37.664062-71.160156 80.53125-72.636718 51.613281-1.773438 103.382812-1.867188 154.988281-.007813 46.65625 1.679688 80.445312 36.226563 81.902344 82.898438 1.550781 49.558593 1.550781 99.238281 0 148.796875-1.457032 46.671875-35.234375 81.214844-81.898438 82.898437-51.605468 1.863281-103.386718 1.910157-154.988281-.027343-46.664063-1.753907-78.921875-36.378907-82.042969-83.121094-.269531-4.042969-1.136718-8.050782-1.726562-12.074219 0-41.382813 0-82.765625 0-124.144531zm160.953125 191.707031c23.617187 0 47.257812.707031 70.84375-.164063 36.980469-1.371093 59.726562-23.441406 60.589843-60.386718 1.070313-46.035156 1.070313-92.132813 0-138.171875-.863281-36.9375-23.625-59.523438-60.589843-60.308594-46.917969-.992187-93.886719-.984375-140.804688 0-36.683593.769531-59.496093 22.898437-60.492187 59.429687-1.265625 46.617188-1.265625 93.316407 0 139.933594.996094 36.527344 23.808594 58.144532 60.496094 59.503906 23.289062.867188 46.636718.164063 69.957031.164063zm0 0\"></path><path d=\"m256 173.996094c-45.289062 0-82.007812 36.714844-82.007812 82.003906 0 45.292969 36.71875 82.007812 82.007812 82.007812 45.292969 0 82.007812-36.714843 82.007812-82.007812 0-45.289062-36.714843-82.003906-82.007812-82.003906zm0 135.777344c-29.699219 0-53.773438-24.074219-53.773438-53.773438s24.074219-53.773438 53.773438-53.773438 53.773438 24.074219 53.773438 53.773438-24.074219 53.773438-53.773438 53.773438zm0 0\"></path><path d=\"m362.304688 170.253906c0 10.773438-8.734376 19.507813-19.507813 19.507813s-19.511719-8.734375-19.511719-19.507813c0-10.777344 8.738282-19.511718 19.511719-19.511718s19.507813 8.734374 19.507813 19.511718zm0 0\"></path></g></svg>			</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:49:45', '2026-04-05 09:49:45', '', 10, 'https://mrarif.me/drsarah/?p=180', 0, 'revision', '', 0),
(181, 1, '2026-04-05 09:50:27', '2026-04-05 09:50:27', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" height=\"512pt\" viewBox=\"0 0 512 512.00038\" width=\"512pt\"><radialGradient id=\"a\" cx=\"104.9571229418\" cy=\"447.4474330468\" gradientUnits=\"userSpaceOnUse\" r=\"564.64588968\"><stop offset=\"0\" stop-color=\"#fae100\"></stop><stop offset=\".0544\" stop-color=\"#fadc04\"></stop><stop offset=\".1167\" stop-color=\"#fbce0e\"></stop><stop offset=\".1829\" stop-color=\"#fcb720\"></stop><stop offset=\".2514\" stop-color=\"#fe9838\"></stop><stop offset=\".3054\" stop-color=\"#ff7950\"></stop><stop offset=\".4922\" stop-color=\"#ff1c74\"></stop><stop offset=\"1\" stop-color=\"#6c1cd1\"></stop></radialGradient><linearGradient id=\"b\" gradientUnits=\"userSpaceOnUse\" x1=\"196.3726539866\" x2=\"-671.0159540134\" y1=\"222.4596783332\" y2=\"-265.4464136668\"><stop offset=\"0\" stop-color=\"#a1b5d8\" stop-opacity=\"0\"></stop><stop offset=\".3094\" stop-color=\"#90a2bd\" stop-opacity=\".309804\"></stop><stop offset=\".7554\" stop-color=\"#7c8b9c\" stop-opacity=\".756863\"></stop><stop offset=\"1\" stop-color=\"#748290\"></stop></linearGradient><linearGradient id=\"c\" gradientUnits=\"userSpaceOnUse\" x1=\"256.0003\" x2=\"256.0003\" y1=\"451.9660859688\" y2=\"531.773969673\"><stop offset=\"0\" stop-color=\"#fae100\" stop-opacity=\"0\"></stop><stop offset=\".3068\" stop-color=\"#fca800\" stop-opacity=\".305882\"></stop><stop offset=\".6275\" stop-color=\"#fe7300\" stop-opacity=\".627451\"></stop><stop offset=\".8685\" stop-color=\"#ff5200\" stop-opacity=\".866667\"></stop><stop offset=\"1\" stop-color=\"#ff4500\"></stop></linearGradient><linearGradient id=\"d\"><stop offset=\"0\" stop-color=\"#833ab4\" stop-opacity=\"0\"></stop><stop offset=\"1\" stop-color=\"#833ab4\"></stop></linearGradient><linearGradient id=\"e\" gradientUnits=\"userSpaceOnUse\" x1=\"226.8724066998\" x2=\"100.1606848024\" xlink:href=\"#d\" y1=\"226.147987369\" y2=\"99.4361650794\"></linearGradient><linearGradient id=\"f\" gradientUnits=\"userSpaceOnUse\" x1=\"350.899540777\" x2=\"287.6555669352\" xlink:href=\"#d\" y1=\"468.287448276\" y2=\"170.1375727138\"></linearGradient><linearGradient id=\"g\" gradientUnits=\"userSpaceOnUse\" x1=\"374.965057\" x2=\"120.9410670648\" xlink:href=\"#d\" y1=\"374.9649673922\" y2=\"120.9408770648\"></linearGradient><linearGradient id=\"h\" gradientUnits=\"userSpaceOnUse\" x1=\"393.806665096\" x2=\"309.8058007666\" xlink:href=\"#d\" y1=\"221.2631037014\" y2=\"137.2623397642\"></linearGradient><linearGradient id=\"i\" gradientUnits=\"userSpaceOnUse\" x1=\"357.6582448576\" x2=\"150.5426107646\" y1=\"155.0495285836\" y2=\"362.1651626766\"><stop offset=\"0\" stop-color=\"#833ab4\"></stop><stop offset=\".0922\" stop-color=\"#9c3495\"></stop><stop offset=\".2927\" stop-color=\"#dc2546\"></stop><stop offset=\".392\" stop-color=\"#fd1d1d\"></stop><stop offset=\".5589\" stop-color=\"#fc6831\"></stop><stop offset=\".6887\" stop-color=\"#fc9b40\"></stop><stop offset=\".7521\" stop-color=\"#fcaf45\"></stop><stop offset=\".7806\" stop-color=\"#fdb750\"></stop><stop offset=\".8656\" stop-color=\"#fecb6a\"></stop><stop offset=\".9415\" stop-color=\"#ffd87a\"></stop><stop offset=\"1\" stop-color=\"#ffdc80\"></stop></linearGradient><path d=\"m503.234375 91.578125c-4.660156-43.664063-39.144531-78.15625-82.8125-82.8125-109.507813-11.6875-219.335937-11.6875-328.839844 0-43.667969 4.660156-78.15625 39.148437-82.816406 82.8125-11.6875 109.503906-11.6875 219.335937 0 328.839844 4.660156 43.667969 39.148437 78.15625 82.8125 82.816406 109.503906 11.6875 219.335937 11.6875 328.84375 0 43.667969-4.660156 78.152344-39.148437 82.8125-82.816406 11.6875-109.503907 11.6875-219.332031 0-328.839844zm0 0\" fill=\"url(#a)\"></path><path d=\"m475.386719 110.097656c-4.132813-38.746094-34.734375-69.351562-73.484375-73.488281-97.171875-10.367187-194.632813-10.367187-291.804688 0-38.746094 4.136719-69.351562 34.742187-73.488281 73.488281-10.367187 97.171875-10.367187 194.632813 0 291.800782 4.136719 38.75 34.742187 69.355468 73.488281 73.488281 97.171875 10.371093 194.632813 10.371093 291.800782 0 38.75-4.132813 69.355468-34.738281 73.488281-73.488281 10.371093-97.167969 10.371093-194.628907 0-291.800782zm0 0\" fill=\"url(#b)\"></path><path d=\"m7.671875 409.804688c.351563 3.539062.714844 7.078124 1.09375 10.617187 4.660156 43.664063 39.148437 78.152344 82.816406 82.8125 109.503907 11.6875 219.335938 11.6875 328.839844 0 43.667969-4.660156 78.152344-39.148437 82.8125-82.8125.378906-3.539063.742187-7.078125 1.097656-10.617187zm0 0\" fill=\"url(#c)\"></path><path d=\"m503.234375 420.417969c6.28125-58.839844 9.179687-117.773438 8.710937-176.699219l-117.03125-117.03125c-14.621093-16.691406-35.976562-27.109375-61.070312-28.011719-51.605469-1.859375-103.375-1.765625-154.988281.007813-42.867188 1.476562-72.84375 30.289062-80.53125 72.636718-1.355469 7.476563-2.167969 15.050782-3.234375 22.582032v124.148437c.589844 4.023438 1.457031 8.027344 1.726562 12.074219 1.71875 25.757812 12.304688 47.820312 29.253906 62.746094l119.09375 119.089844c58.445313.410156 116.894532-2.496094 175.257813-8.726563 43.667969-4.660156 78.152344-39.148437 82.8125-82.816406zm0 0\" fill=\"url(#e)\"></path><path d=\"m503.234375 420.421875c-4.65625 43.660156-39.152344 78.15625-82.8125 82.8125-58.355469 6.226563-116.816406 9.136719-175.253906 8.726563l-118.914063-118.914063c13.785156 12.066406 31.753906 19.414063 52.605469 20.199219 51.601563 1.9375 103.382813 1.886718 154.984375.027344 46.671875-1.6875 80.445312-36.230469 81.902344-82.902344 1.554687-49.554688 1.554687-99.238282 0-148.792969-.664063-21.53125-8.222656-40.476563-20.753906-54.8125l116.957031 116.957031c.460937 58.917969-2.4375 117.859375-8.714844 176.699219zm0 0\" fill=\"url(#f)\"></path><path d=\"m316.414062 200.558594c-14.992187-16.324219-36.503906-26.566406-60.414062-26.566406-45.289062 0-82.007812 36.71875-82.007812 82.007812 0 23.910156 10.242187 45.421875 26.566406 60.414062l189.738281 189.738282c10.042969-.875 20.085937-1.847656 30.121094-2.917969 43.667969-4.660156 78.15625-39.148437 82.816406-82.816406 1.070313-10.035157 2.042969-20.078125 2.917969-30.121094zm0 0\" fill=\"url(#g)\"></path><path d=\"m511.007812 311.152344-152.703124-152.699219c-3.5625-4.675781-9.175782-7.710937-15.507813-7.710937-10.773437 0-19.511719 8.734374-19.511719 19.511718 0 6.332032 3.035156 11.945313 7.710938 15.507813l177.28125 177.285156c1.203125-17.292969 2.113281-34.59375 2.730468-51.894531zm0 0\" fill=\"url(#h)\"></path><path d=\"m95.089844 193.902344c1.066406-7.53125 1.878906-15.105469 3.234375-22.582032 7.683593-42.347656 37.664062-71.160156 80.53125-72.636718 51.613281-1.773438 103.382812-1.867188 154.988281-.007813 46.65625 1.679688 80.445312 36.226563 81.902344 82.898438 1.550781 49.558593 1.550781 99.238281 0 148.796875-1.457032 46.671875-35.234375 81.214844-81.898438 82.898437-51.605468 1.863281-103.386718 1.910157-154.988281-.027343-46.664063-1.753907-78.921875-36.378907-82.042969-83.121094-.269531-4.042969-1.136718-8.050782-1.726562-12.074219 0-41.382813 0-82.765625 0-124.144531zm160.953125 191.707031c23.617187 0 47.257812.707031 70.84375-.164063 36.980469-1.371093 59.726562-23.441406 60.589843-60.386718 1.070313-46.035156 1.070313-92.132813 0-138.171875-.863281-36.9375-23.625-59.523438-60.589843-60.308594-46.917969-.992187-93.886719-.984375-140.804688 0-36.683593.769531-59.496093 22.898437-60.492187 59.429687-1.265625 46.617188-1.265625 93.316407 0 139.933594.996094 36.527344 23.808594 58.144532 60.496094 59.503906 23.289062.867188 46.636718.164063 69.957031.164063zm0 0\" fill=\"url(#i)\"></path><g fill=\"#fff\"><path d=\"m95.089844 193.902344c1.066406-7.53125 1.878906-15.105469 3.234375-22.582032 7.683593-42.347656 37.664062-71.160156 80.53125-72.636718 51.613281-1.773438 103.382812-1.867188 154.988281-.007813 46.65625 1.679688 80.445312 36.226563 81.902344 82.898438 1.550781 49.558593 1.550781 99.238281 0 148.796875-1.457032 46.671875-35.234375 81.214844-81.898438 82.898437-51.605468 1.863281-103.386718 1.910157-154.988281-.027343-46.664063-1.753907-78.921875-36.378907-82.042969-83.121094-.269531-4.042969-1.136718-8.050782-1.726562-12.074219 0-41.382813 0-82.765625 0-124.144531zm160.953125 191.707031c23.617187 0 47.257812.707031 70.84375-.164063 36.980469-1.371093 59.726562-23.441406 60.589843-60.386718 1.070313-46.035156 1.070313-92.132813 0-138.171875-.863281-36.9375-23.625-59.523438-60.589843-60.308594-46.917969-.992187-93.886719-.984375-140.804688 0-36.683593.769531-59.496093 22.898437-60.492187 59.429687-1.265625 46.617188-1.265625 93.316407 0 139.933594.996094 36.527344 23.808594 58.144532 60.496094 59.503906 23.289062.867188 46.636718.164063 69.957031.164063zm0 0\"></path><path d=\"m256 173.996094c-45.289062 0-82.007812 36.714844-82.007812 82.003906 0 45.292969 36.71875 82.007812 82.007812 82.007812 45.292969 0 82.007812-36.714843 82.007812-82.007812 0-45.289062-36.714843-82.003906-82.007812-82.003906zm0 135.777344c-29.699219 0-53.773438-24.074219-53.773438-53.773438s24.074219-53.773438 53.773438-53.773438 53.773438 24.074219 53.773438 53.773438-24.074219 53.773438-53.773438 53.773438zm0 0\"></path><path d=\"m362.304688 170.253906c0 10.773438-8.734376 19.507813-19.507813 19.507813s-19.511719-8.734375-19.511719-19.507813c0-10.777344 8.738282-19.511718 19.511719-19.511718s19.507813 8.734374 19.507813 19.511718zm0 0\"></path></g></svg>			</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:50:27', '2026-04-05 09:50:27', '', 10, 'https://mrarif.me/drsarah/?p=181', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(182, 1, '2026-04-05 09:50:27', '2026-04-05 09:50:27', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" height=\"512pt\" viewBox=\"0 0 512 512.00038\" width=\"512pt\"><radialGradient id=\"a\" cx=\"104.9571229418\" cy=\"447.4474330468\" gradientUnits=\"userSpaceOnUse\" r=\"564.64588968\"><stop offset=\"0\" stop-color=\"#fae100\"></stop><stop offset=\".0544\" stop-color=\"#fadc04\"></stop><stop offset=\".1167\" stop-color=\"#fbce0e\"></stop><stop offset=\".1829\" stop-color=\"#fcb720\"></stop><stop offset=\".2514\" stop-color=\"#fe9838\"></stop><stop offset=\".3054\" stop-color=\"#ff7950\"></stop><stop offset=\".4922\" stop-color=\"#ff1c74\"></stop><stop offset=\"1\" stop-color=\"#6c1cd1\"></stop></radialGradient><linearGradient id=\"b\" gradientUnits=\"userSpaceOnUse\" x1=\"196.3726539866\" x2=\"-671.0159540134\" y1=\"222.4596783332\" y2=\"-265.4464136668\"><stop offset=\"0\" stop-color=\"#a1b5d8\" stop-opacity=\"0\"></stop><stop offset=\".3094\" stop-color=\"#90a2bd\" stop-opacity=\".309804\"></stop><stop offset=\".7554\" stop-color=\"#7c8b9c\" stop-opacity=\".756863\"></stop><stop offset=\"1\" stop-color=\"#748290\"></stop></linearGradient><linearGradient id=\"c\" gradientUnits=\"userSpaceOnUse\" x1=\"256.0003\" x2=\"256.0003\" y1=\"451.9660859688\" y2=\"531.773969673\"><stop offset=\"0\" stop-color=\"#fae100\" stop-opacity=\"0\"></stop><stop offset=\".3068\" stop-color=\"#fca800\" stop-opacity=\".305882\"></stop><stop offset=\".6275\" stop-color=\"#fe7300\" stop-opacity=\".627451\"></stop><stop offset=\".8685\" stop-color=\"#ff5200\" stop-opacity=\".866667\"></stop><stop offset=\"1\" stop-color=\"#ff4500\"></stop></linearGradient><linearGradient id=\"d\"><stop offset=\"0\" stop-color=\"#833ab4\" stop-opacity=\"0\"></stop><stop offset=\"1\" stop-color=\"#833ab4\"></stop></linearGradient><linearGradient id=\"e\" gradientUnits=\"userSpaceOnUse\" x1=\"226.8724066998\" x2=\"100.1606848024\" xlink:href=\"#d\" y1=\"226.147987369\" y2=\"99.4361650794\"></linearGradient><linearGradient id=\"f\" gradientUnits=\"userSpaceOnUse\" x1=\"350.899540777\" x2=\"287.6555669352\" xlink:href=\"#d\" y1=\"468.287448276\" y2=\"170.1375727138\"></linearGradient><linearGradient id=\"g\" gradientUnits=\"userSpaceOnUse\" x1=\"374.965057\" x2=\"120.9410670648\" xlink:href=\"#d\" y1=\"374.9649673922\" y2=\"120.9408770648\"></linearGradient><linearGradient id=\"h\" gradientUnits=\"userSpaceOnUse\" x1=\"393.806665096\" x2=\"309.8058007666\" xlink:href=\"#d\" y1=\"221.2631037014\" y2=\"137.2623397642\"></linearGradient><linearGradient id=\"i\" gradientUnits=\"userSpaceOnUse\" x1=\"357.6582448576\" x2=\"150.5426107646\" y1=\"155.0495285836\" y2=\"362.1651626766\"><stop offset=\"0\" stop-color=\"#833ab4\"></stop><stop offset=\".0922\" stop-color=\"#9c3495\"></stop><stop offset=\".2927\" stop-color=\"#dc2546\"></stop><stop offset=\".392\" stop-color=\"#fd1d1d\"></stop><stop offset=\".5589\" stop-color=\"#fc6831\"></stop><stop offset=\".6887\" stop-color=\"#fc9b40\"></stop><stop offset=\".7521\" stop-color=\"#fcaf45\"></stop><stop offset=\".7806\" stop-color=\"#fdb750\"></stop><stop offset=\".8656\" stop-color=\"#fecb6a\"></stop><stop offset=\".9415\" stop-color=\"#ffd87a\"></stop><stop offset=\"1\" stop-color=\"#ffdc80\"></stop></linearGradient><path d=\"m503.234375 91.578125c-4.660156-43.664063-39.144531-78.15625-82.8125-82.8125-109.507813-11.6875-219.335937-11.6875-328.839844 0-43.667969 4.660156-78.15625 39.148437-82.816406 82.8125-11.6875 109.503906-11.6875 219.335937 0 328.839844 4.660156 43.667969 39.148437 78.15625 82.8125 82.816406 109.503906 11.6875 219.335937 11.6875 328.84375 0 43.667969-4.660156 78.152344-39.148437 82.8125-82.816406 11.6875-109.503907 11.6875-219.332031 0-328.839844zm0 0\" fill=\"url(#a)\"></path><path d=\"m475.386719 110.097656c-4.132813-38.746094-34.734375-69.351562-73.484375-73.488281-97.171875-10.367187-194.632813-10.367187-291.804688 0-38.746094 4.136719-69.351562 34.742187-73.488281 73.488281-10.367187 97.171875-10.367187 194.632813 0 291.800782 4.136719 38.75 34.742187 69.355468 73.488281 73.488281 97.171875 10.371093 194.632813 10.371093 291.800782 0 38.75-4.132813 69.355468-34.738281 73.488281-73.488281 10.371093-97.167969 10.371093-194.628907 0-291.800782zm0 0\" fill=\"url(#b)\"></path><path d=\"m7.671875 409.804688c.351563 3.539062.714844 7.078124 1.09375 10.617187 4.660156 43.664063 39.148437 78.152344 82.816406 82.8125 109.503907 11.6875 219.335938 11.6875 328.839844 0 43.667969-4.660156 78.152344-39.148437 82.8125-82.8125.378906-3.539063.742187-7.078125 1.097656-10.617187zm0 0\" fill=\"url(#c)\"></path><path d=\"m503.234375 420.417969c6.28125-58.839844 9.179687-117.773438 8.710937-176.699219l-117.03125-117.03125c-14.621093-16.691406-35.976562-27.109375-61.070312-28.011719-51.605469-1.859375-103.375-1.765625-154.988281.007813-42.867188 1.476562-72.84375 30.289062-80.53125 72.636718-1.355469 7.476563-2.167969 15.050782-3.234375 22.582032v124.148437c.589844 4.023438 1.457031 8.027344 1.726562 12.074219 1.71875 25.757812 12.304688 47.820312 29.253906 62.746094l119.09375 119.089844c58.445313.410156 116.894532-2.496094 175.257813-8.726563 43.667969-4.660156 78.152344-39.148437 82.8125-82.816406zm0 0\" fill=\"url(#e)\"></path><path d=\"m503.234375 420.421875c-4.65625 43.660156-39.152344 78.15625-82.8125 82.8125-58.355469 6.226563-116.816406 9.136719-175.253906 8.726563l-118.914063-118.914063c13.785156 12.066406 31.753906 19.414063 52.605469 20.199219 51.601563 1.9375 103.382813 1.886718 154.984375.027344 46.671875-1.6875 80.445312-36.230469 81.902344-82.902344 1.554687-49.554688 1.554687-99.238282 0-148.792969-.664063-21.53125-8.222656-40.476563-20.753906-54.8125l116.957031 116.957031c.460937 58.917969-2.4375 117.859375-8.714844 176.699219zm0 0\" fill=\"url(#f)\"></path><path d=\"m316.414062 200.558594c-14.992187-16.324219-36.503906-26.566406-60.414062-26.566406-45.289062 0-82.007812 36.71875-82.007812 82.007812 0 23.910156 10.242187 45.421875 26.566406 60.414062l189.738281 189.738282c10.042969-.875 20.085937-1.847656 30.121094-2.917969 43.667969-4.660156 78.15625-39.148437 82.816406-82.816406 1.070313-10.035157 2.042969-20.078125 2.917969-30.121094zm0 0\" fill=\"url(#g)\"></path><path d=\"m511.007812 311.152344-152.703124-152.699219c-3.5625-4.675781-9.175782-7.710937-15.507813-7.710937-10.773437 0-19.511719 8.734374-19.511719 19.511718 0 6.332032 3.035156 11.945313 7.710938 15.507813l177.28125 177.285156c1.203125-17.292969 2.113281-34.59375 2.730468-51.894531zm0 0\" fill=\"url(#h)\"></path><path d=\"m95.089844 193.902344c1.066406-7.53125 1.878906-15.105469 3.234375-22.582032 7.683593-42.347656 37.664062-71.160156 80.53125-72.636718 51.613281-1.773438 103.382812-1.867188 154.988281-.007813 46.65625 1.679688 80.445312 36.226563 81.902344 82.898438 1.550781 49.558593 1.550781 99.238281 0 148.796875-1.457032 46.671875-35.234375 81.214844-81.898438 82.898437-51.605468 1.863281-103.386718 1.910157-154.988281-.027343-46.664063-1.753907-78.921875-36.378907-82.042969-83.121094-.269531-4.042969-1.136718-8.050782-1.726562-12.074219 0-41.382813 0-82.765625 0-124.144531zm160.953125 191.707031c23.617187 0 47.257812.707031 70.84375-.164063 36.980469-1.371093 59.726562-23.441406 60.589843-60.386718 1.070313-46.035156 1.070313-92.132813 0-138.171875-.863281-36.9375-23.625-59.523438-60.589843-60.308594-46.917969-.992187-93.886719-.984375-140.804688 0-36.683593.769531-59.496093 22.898437-60.492187 59.429687-1.265625 46.617188-1.265625 93.316407 0 139.933594.996094 36.527344 23.808594 58.144532 60.496094 59.503906 23.289062.867188 46.636718.164063 69.957031.164063zm0 0\" fill=\"url(#i)\"></path><g fill=\"#fff\"><path d=\"m95.089844 193.902344c1.066406-7.53125 1.878906-15.105469 3.234375-22.582032 7.683593-42.347656 37.664062-71.160156 80.53125-72.636718 51.613281-1.773438 103.382812-1.867188 154.988281-.007813 46.65625 1.679688 80.445312 36.226563 81.902344 82.898438 1.550781 49.558593 1.550781 99.238281 0 148.796875-1.457032 46.671875-35.234375 81.214844-81.898438 82.898437-51.605468 1.863281-103.386718 1.910157-154.988281-.027343-46.664063-1.753907-78.921875-36.378907-82.042969-83.121094-.269531-4.042969-1.136718-8.050782-1.726562-12.074219 0-41.382813 0-82.765625 0-124.144531zm160.953125 191.707031c23.617187 0 47.257812.707031 70.84375-.164063 36.980469-1.371093 59.726562-23.441406 60.589843-60.386718 1.070313-46.035156 1.070313-92.132813 0-138.171875-.863281-36.9375-23.625-59.523438-60.589843-60.308594-46.917969-.992187-93.886719-.984375-140.804688 0-36.683593.769531-59.496093 22.898437-60.492187 59.429687-1.265625 46.617188-1.265625 93.316407 0 139.933594.996094 36.527344 23.808594 58.144532 60.496094 59.503906 23.289062.867188 46.636718.164063 69.957031.164063zm0 0\"></path><path d=\"m256 173.996094c-45.289062 0-82.007812 36.714844-82.007812 82.003906 0 45.292969 36.71875 82.007812 82.007812 82.007812 45.292969 0 82.007812-36.714843 82.007812-82.007812 0-45.289062-36.714843-82.003906-82.007812-82.003906zm0 135.777344c-29.699219 0-53.773438-24.074219-53.773438-53.773438s24.074219-53.773438 53.773438-53.773438 53.773438 24.074219 53.773438 53.773438-24.074219 53.773438-53.773438 53.773438zm0 0\"></path><path d=\"m362.304688 170.253906c0 10.773438-8.734376 19.507813-19.507813 19.507813s-19.511719-8.734375-19.511719-19.507813c0-10.777344 8.738282-19.511718 19.511719-19.511718s19.507813 8.734374 19.507813 19.511718zm0 0\"></path></g></svg>			</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h5>Dr. Sarah Alabdullah</h5>					<h6>Certified Specialist in Prosthodontics</h6>					<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:50:27', '2026-04-05 09:50:27', '', 10, 'https://mrarif.me/drsarah/?p=182', 0, 'revision', '', 0),
(184, 1, '2026-04-05 09:50:36', '2026-04-05 09:50:36', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" height=\"512pt\" viewBox=\"0 0 512 512.00038\" width=\"512pt\"><radialGradient id=\"a\" cx=\"104.9571229418\" cy=\"447.4474330468\" gradientUnits=\"userSpaceOnUse\" r=\"564.64588968\"><stop offset=\"0\" stop-color=\"#fae100\"></stop><stop offset=\".0544\" stop-color=\"#fadc04\"></stop><stop offset=\".1167\" stop-color=\"#fbce0e\"></stop><stop offset=\".1829\" stop-color=\"#fcb720\"></stop><stop offset=\".2514\" stop-color=\"#fe9838\"></stop><stop offset=\".3054\" stop-color=\"#ff7950\"></stop><stop offset=\".4922\" stop-color=\"#ff1c74\"></stop><stop offset=\"1\" stop-color=\"#6c1cd1\"></stop></radialGradient><linearGradient id=\"b\" gradientUnits=\"userSpaceOnUse\" x1=\"196.3726539866\" x2=\"-671.0159540134\" y1=\"222.4596783332\" y2=\"-265.4464136668\"><stop offset=\"0\" stop-color=\"#a1b5d8\" stop-opacity=\"0\"></stop><stop offset=\".3094\" stop-color=\"#90a2bd\" stop-opacity=\".309804\"></stop><stop offset=\".7554\" stop-color=\"#7c8b9c\" stop-opacity=\".756863\"></stop><stop offset=\"1\" stop-color=\"#748290\"></stop></linearGradient><linearGradient id=\"c\" gradientUnits=\"userSpaceOnUse\" x1=\"256.0003\" x2=\"256.0003\" y1=\"451.9660859688\" y2=\"531.773969673\"><stop offset=\"0\" stop-color=\"#fae100\" stop-opacity=\"0\"></stop><stop offset=\".3068\" stop-color=\"#fca800\" stop-opacity=\".305882\"></stop><stop offset=\".6275\" stop-color=\"#fe7300\" stop-opacity=\".627451\"></stop><stop offset=\".8685\" stop-color=\"#ff5200\" stop-opacity=\".866667\"></stop><stop offset=\"1\" stop-color=\"#ff4500\"></stop></linearGradient><linearGradient id=\"d\"><stop offset=\"0\" stop-color=\"#833ab4\" stop-opacity=\"0\"></stop><stop offset=\"1\" stop-color=\"#833ab4\"></stop></linearGradient><linearGradient id=\"e\" gradientUnits=\"userSpaceOnUse\" x1=\"226.8724066998\" x2=\"100.1606848024\" xlink:href=\"#d\" y1=\"226.147987369\" y2=\"99.4361650794\"></linearGradient><linearGradient id=\"f\" gradientUnits=\"userSpaceOnUse\" x1=\"350.899540777\" x2=\"287.6555669352\" xlink:href=\"#d\" y1=\"468.287448276\" y2=\"170.1375727138\"></linearGradient><linearGradient id=\"g\" gradientUnits=\"userSpaceOnUse\" x1=\"374.965057\" x2=\"120.9410670648\" xlink:href=\"#d\" y1=\"374.9649673922\" y2=\"120.9408770648\"></linearGradient><linearGradient id=\"h\" gradientUnits=\"userSpaceOnUse\" x1=\"393.806665096\" x2=\"309.8058007666\" xlink:href=\"#d\" y1=\"221.2631037014\" y2=\"137.2623397642\"></linearGradient><linearGradient id=\"i\" gradientUnits=\"userSpaceOnUse\" x1=\"357.6582448576\" x2=\"150.5426107646\" y1=\"155.0495285836\" y2=\"362.1651626766\"><stop offset=\"0\" stop-color=\"#833ab4\"></stop><stop offset=\".0922\" stop-color=\"#9c3495\"></stop><stop offset=\".2927\" stop-color=\"#dc2546\"></stop><stop offset=\".392\" stop-color=\"#fd1d1d\"></stop><stop offset=\".5589\" stop-color=\"#fc6831\"></stop><stop offset=\".6887\" stop-color=\"#fc9b40\"></stop><stop offset=\".7521\" stop-color=\"#fcaf45\"></stop><stop offset=\".7806\" stop-color=\"#fdb750\"></stop><stop offset=\".8656\" stop-color=\"#fecb6a\"></stop><stop offset=\".9415\" stop-color=\"#ffd87a\"></stop><stop offset=\"1\" stop-color=\"#ffdc80\"></stop></linearGradient><path d=\"m503.234375 91.578125c-4.660156-43.664063-39.144531-78.15625-82.8125-82.8125-109.507813-11.6875-219.335937-11.6875-328.839844 0-43.667969 4.660156-78.15625 39.148437-82.816406 82.8125-11.6875 109.503906-11.6875 219.335937 0 328.839844 4.660156 43.667969 39.148437 78.15625 82.8125 82.816406 109.503906 11.6875 219.335937 11.6875 328.84375 0 43.667969-4.660156 78.152344-39.148437 82.8125-82.816406 11.6875-109.503907 11.6875-219.332031 0-328.839844zm0 0\" fill=\"url(#a)\"></path><path d=\"m475.386719 110.097656c-4.132813-38.746094-34.734375-69.351562-73.484375-73.488281-97.171875-10.367187-194.632813-10.367187-291.804688 0-38.746094 4.136719-69.351562 34.742187-73.488281 73.488281-10.367187 97.171875-10.367187 194.632813 0 291.800782 4.136719 38.75 34.742187 69.355468 73.488281 73.488281 97.171875 10.371093 194.632813 10.371093 291.800782 0 38.75-4.132813 69.355468-34.738281 73.488281-73.488281 10.371093-97.167969 10.371093-194.628907 0-291.800782zm0 0\" fill=\"url(#b)\"></path><path d=\"m7.671875 409.804688c.351563 3.539062.714844 7.078124 1.09375 10.617187 4.660156 43.664063 39.148437 78.152344 82.816406 82.8125 109.503907 11.6875 219.335938 11.6875 328.839844 0 43.667969-4.660156 78.152344-39.148437 82.8125-82.8125.378906-3.539063.742187-7.078125 1.097656-10.617187zm0 0\" fill=\"url(#c)\"></path><path d=\"m503.234375 420.417969c6.28125-58.839844 9.179687-117.773438 8.710937-176.699219l-117.03125-117.03125c-14.621093-16.691406-35.976562-27.109375-61.070312-28.011719-51.605469-1.859375-103.375-1.765625-154.988281.007813-42.867188 1.476562-72.84375 30.289062-80.53125 72.636718-1.355469 7.476563-2.167969 15.050782-3.234375 22.582032v124.148437c.589844 4.023438 1.457031 8.027344 1.726562 12.074219 1.71875 25.757812 12.304688 47.820312 29.253906 62.746094l119.09375 119.089844c58.445313.410156 116.894532-2.496094 175.257813-8.726563 43.667969-4.660156 78.152344-39.148437 82.8125-82.816406zm0 0\" fill=\"url(#e)\"></path><path d=\"m503.234375 420.421875c-4.65625 43.660156-39.152344 78.15625-82.8125 82.8125-58.355469 6.226563-116.816406 9.136719-175.253906 8.726563l-118.914063-118.914063c13.785156 12.066406 31.753906 19.414063 52.605469 20.199219 51.601563 1.9375 103.382813 1.886718 154.984375.027344 46.671875-1.6875 80.445312-36.230469 81.902344-82.902344 1.554687-49.554688 1.554687-99.238282 0-148.792969-.664063-21.53125-8.222656-40.476563-20.753906-54.8125l116.957031 116.957031c.460937 58.917969-2.4375 117.859375-8.714844 176.699219zm0 0\" fill=\"url(#f)\"></path><path d=\"m316.414062 200.558594c-14.992187-16.324219-36.503906-26.566406-60.414062-26.566406-45.289062 0-82.007812 36.71875-82.007812 82.007812 0 23.910156 10.242187 45.421875 26.566406 60.414062l189.738281 189.738282c10.042969-.875 20.085937-1.847656 30.121094-2.917969 43.667969-4.660156 78.15625-39.148437 82.816406-82.816406 1.070313-10.035157 2.042969-20.078125 2.917969-30.121094zm0 0\" fill=\"url(#g)\"></path><path d=\"m511.007812 311.152344-152.703124-152.699219c-3.5625-4.675781-9.175782-7.710937-15.507813-7.710937-10.773437 0-19.511719 8.734374-19.511719 19.511718 0 6.332032 3.035156 11.945313 7.710938 15.507813l177.28125 177.285156c1.203125-17.292969 2.113281-34.59375 2.730468-51.894531zm0 0\" fill=\"url(#h)\"></path><path d=\"m95.089844 193.902344c1.066406-7.53125 1.878906-15.105469 3.234375-22.582032 7.683593-42.347656 37.664062-71.160156 80.53125-72.636718 51.613281-1.773438 103.382812-1.867188 154.988281-.007813 46.65625 1.679688 80.445312 36.226563 81.902344 82.898438 1.550781 49.558593 1.550781 99.238281 0 148.796875-1.457032 46.671875-35.234375 81.214844-81.898438 82.898437-51.605468 1.863281-103.386718 1.910157-154.988281-.027343-46.664063-1.753907-78.921875-36.378907-82.042969-83.121094-.269531-4.042969-1.136718-8.050782-1.726562-12.074219 0-41.382813 0-82.765625 0-124.144531zm160.953125 191.707031c23.617187 0 47.257812.707031 70.84375-.164063 36.980469-1.371093 59.726562-23.441406 60.589843-60.386718 1.070313-46.035156 1.070313-92.132813 0-138.171875-.863281-36.9375-23.625-59.523438-60.589843-60.308594-46.917969-.992187-93.886719-.984375-140.804688 0-36.683593.769531-59.496093 22.898437-60.492187 59.429687-1.265625 46.617188-1.265625 93.316407 0 139.933594.996094 36.527344 23.808594 58.144532 60.496094 59.503906 23.289062.867188 46.636718.164063 69.957031.164063zm0 0\" fill=\"url(#i)\"></path><g fill=\"#fff\"><path d=\"m95.089844 193.902344c1.066406-7.53125 1.878906-15.105469 3.234375-22.582032 7.683593-42.347656 37.664062-71.160156 80.53125-72.636718 51.613281-1.773438 103.382812-1.867188 154.988281-.007813 46.65625 1.679688 80.445312 36.226563 81.902344 82.898438 1.550781 49.558593 1.550781 99.238281 0 148.796875-1.457032 46.671875-35.234375 81.214844-81.898438 82.898437-51.605468 1.863281-103.386718 1.910157-154.988281-.027343-46.664063-1.753907-78.921875-36.378907-82.042969-83.121094-.269531-4.042969-1.136718-8.050782-1.726562-12.074219 0-41.382813 0-82.765625 0-124.144531zm160.953125 191.707031c23.617187 0 47.257812.707031 70.84375-.164063 36.980469-1.371093 59.726562-23.441406 60.589843-60.386718 1.070313-46.035156 1.070313-92.132813 0-138.171875-.863281-36.9375-23.625-59.523438-60.589843-60.308594-46.917969-.992187-93.886719-.984375-140.804688 0-36.683593.769531-59.496093 22.898437-60.492187 59.429687-1.265625 46.617188-1.265625 93.316407 0 139.933594.996094 36.527344 23.808594 58.144532 60.496094 59.503906 23.289062.867188 46.636718.164063 69.957031.164063zm0 0\"></path><path d=\"m256 173.996094c-45.289062 0-82.007812 36.714844-82.007812 82.003906 0 45.292969 36.71875 82.007812 82.007812 82.007812 45.292969 0 82.007812-36.714843 82.007812-82.007812 0-45.289062-36.714843-82.003906-82.007812-82.003906zm0 135.777344c-29.699219 0-53.773438-24.074219-53.773438-53.773438s24.074219-53.773438 53.773438-53.773438 53.773438 24.074219 53.773438 53.773438-24.074219 53.773438-53.773438 53.773438zm0 0\"></path><path d=\"m362.304688 170.253906c0 10.773438-8.734376 19.507813-19.507813 19.507813s-19.511719-8.734375-19.511719-19.507813c0-10.777344 8.738282-19.511718 19.511719-19.511718s19.507813 8.734374 19.507813 19.511718zm0 0\"></path></g></svg>			</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:50:36', '2026-04-05 09:50:36', '', 10, 'https://mrarif.me/drsarah/?p=184', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(185, 1, '2026-04-05 09:50:36', '2026-04-05 09:50:36', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" height=\"512pt\" viewBox=\"0 0 512 512.00038\" width=\"512pt\"><radialGradient id=\"a\" cx=\"104.9571229418\" cy=\"447.4474330468\" gradientUnits=\"userSpaceOnUse\" r=\"564.64588968\"><stop offset=\"0\" stop-color=\"#fae100\"></stop><stop offset=\".0544\" stop-color=\"#fadc04\"></stop><stop offset=\".1167\" stop-color=\"#fbce0e\"></stop><stop offset=\".1829\" stop-color=\"#fcb720\"></stop><stop offset=\".2514\" stop-color=\"#fe9838\"></stop><stop offset=\".3054\" stop-color=\"#ff7950\"></stop><stop offset=\".4922\" stop-color=\"#ff1c74\"></stop><stop offset=\"1\" stop-color=\"#6c1cd1\"></stop></radialGradient><linearGradient id=\"b\" gradientUnits=\"userSpaceOnUse\" x1=\"196.3726539866\" x2=\"-671.0159540134\" y1=\"222.4596783332\" y2=\"-265.4464136668\"><stop offset=\"0\" stop-color=\"#a1b5d8\" stop-opacity=\"0\"></stop><stop offset=\".3094\" stop-color=\"#90a2bd\" stop-opacity=\".309804\"></stop><stop offset=\".7554\" stop-color=\"#7c8b9c\" stop-opacity=\".756863\"></stop><stop offset=\"1\" stop-color=\"#748290\"></stop></linearGradient><linearGradient id=\"c\" gradientUnits=\"userSpaceOnUse\" x1=\"256.0003\" x2=\"256.0003\" y1=\"451.9660859688\" y2=\"531.773969673\"><stop offset=\"0\" stop-color=\"#fae100\" stop-opacity=\"0\"></stop><stop offset=\".3068\" stop-color=\"#fca800\" stop-opacity=\".305882\"></stop><stop offset=\".6275\" stop-color=\"#fe7300\" stop-opacity=\".627451\"></stop><stop offset=\".8685\" stop-color=\"#ff5200\" stop-opacity=\".866667\"></stop><stop offset=\"1\" stop-color=\"#ff4500\"></stop></linearGradient><linearGradient id=\"d\"><stop offset=\"0\" stop-color=\"#833ab4\" stop-opacity=\"0\"></stop><stop offset=\"1\" stop-color=\"#833ab4\"></stop></linearGradient><linearGradient id=\"e\" gradientUnits=\"userSpaceOnUse\" x1=\"226.8724066998\" x2=\"100.1606848024\" xlink:href=\"#d\" y1=\"226.147987369\" y2=\"99.4361650794\"></linearGradient><linearGradient id=\"f\" gradientUnits=\"userSpaceOnUse\" x1=\"350.899540777\" x2=\"287.6555669352\" xlink:href=\"#d\" y1=\"468.287448276\" y2=\"170.1375727138\"></linearGradient><linearGradient id=\"g\" gradientUnits=\"userSpaceOnUse\" x1=\"374.965057\" x2=\"120.9410670648\" xlink:href=\"#d\" y1=\"374.9649673922\" y2=\"120.9408770648\"></linearGradient><linearGradient id=\"h\" gradientUnits=\"userSpaceOnUse\" x1=\"393.806665096\" x2=\"309.8058007666\" xlink:href=\"#d\" y1=\"221.2631037014\" y2=\"137.2623397642\"></linearGradient><linearGradient id=\"i\" gradientUnits=\"userSpaceOnUse\" x1=\"357.6582448576\" x2=\"150.5426107646\" y1=\"155.0495285836\" y2=\"362.1651626766\"><stop offset=\"0\" stop-color=\"#833ab4\"></stop><stop offset=\".0922\" stop-color=\"#9c3495\"></stop><stop offset=\".2927\" stop-color=\"#dc2546\"></stop><stop offset=\".392\" stop-color=\"#fd1d1d\"></stop><stop offset=\".5589\" stop-color=\"#fc6831\"></stop><stop offset=\".6887\" stop-color=\"#fc9b40\"></stop><stop offset=\".7521\" stop-color=\"#fcaf45\"></stop><stop offset=\".7806\" stop-color=\"#fdb750\"></stop><stop offset=\".8656\" stop-color=\"#fecb6a\"></stop><stop offset=\".9415\" stop-color=\"#ffd87a\"></stop><stop offset=\"1\" stop-color=\"#ffdc80\"></stop></linearGradient><path d=\"m503.234375 91.578125c-4.660156-43.664063-39.144531-78.15625-82.8125-82.8125-109.507813-11.6875-219.335937-11.6875-328.839844 0-43.667969 4.660156-78.15625 39.148437-82.816406 82.8125-11.6875 109.503906-11.6875 219.335937 0 328.839844 4.660156 43.667969 39.148437 78.15625 82.8125 82.816406 109.503906 11.6875 219.335937 11.6875 328.84375 0 43.667969-4.660156 78.152344-39.148437 82.8125-82.816406 11.6875-109.503907 11.6875-219.332031 0-328.839844zm0 0\" fill=\"url(#a)\"></path><path d=\"m475.386719 110.097656c-4.132813-38.746094-34.734375-69.351562-73.484375-73.488281-97.171875-10.367187-194.632813-10.367187-291.804688 0-38.746094 4.136719-69.351562 34.742187-73.488281 73.488281-10.367187 97.171875-10.367187 194.632813 0 291.800782 4.136719 38.75 34.742187 69.355468 73.488281 73.488281 97.171875 10.371093 194.632813 10.371093 291.800782 0 38.75-4.132813 69.355468-34.738281 73.488281-73.488281 10.371093-97.167969 10.371093-194.628907 0-291.800782zm0 0\" fill=\"url(#b)\"></path><path d=\"m7.671875 409.804688c.351563 3.539062.714844 7.078124 1.09375 10.617187 4.660156 43.664063 39.148437 78.152344 82.816406 82.8125 109.503907 11.6875 219.335938 11.6875 328.839844 0 43.667969-4.660156 78.152344-39.148437 82.8125-82.8125.378906-3.539063.742187-7.078125 1.097656-10.617187zm0 0\" fill=\"url(#c)\"></path><path d=\"m503.234375 420.417969c6.28125-58.839844 9.179687-117.773438 8.710937-176.699219l-117.03125-117.03125c-14.621093-16.691406-35.976562-27.109375-61.070312-28.011719-51.605469-1.859375-103.375-1.765625-154.988281.007813-42.867188 1.476562-72.84375 30.289062-80.53125 72.636718-1.355469 7.476563-2.167969 15.050782-3.234375 22.582032v124.148437c.589844 4.023438 1.457031 8.027344 1.726562 12.074219 1.71875 25.757812 12.304688 47.820312 29.253906 62.746094l119.09375 119.089844c58.445313.410156 116.894532-2.496094 175.257813-8.726563 43.667969-4.660156 78.152344-39.148437 82.8125-82.816406zm0 0\" fill=\"url(#e)\"></path><path d=\"m503.234375 420.421875c-4.65625 43.660156-39.152344 78.15625-82.8125 82.8125-58.355469 6.226563-116.816406 9.136719-175.253906 8.726563l-118.914063-118.914063c13.785156 12.066406 31.753906 19.414063 52.605469 20.199219 51.601563 1.9375 103.382813 1.886718 154.984375.027344 46.671875-1.6875 80.445312-36.230469 81.902344-82.902344 1.554687-49.554688 1.554687-99.238282 0-148.792969-.664063-21.53125-8.222656-40.476563-20.753906-54.8125l116.957031 116.957031c.460937 58.917969-2.4375 117.859375-8.714844 176.699219zm0 0\" fill=\"url(#f)\"></path><path d=\"m316.414062 200.558594c-14.992187-16.324219-36.503906-26.566406-60.414062-26.566406-45.289062 0-82.007812 36.71875-82.007812 82.007812 0 23.910156 10.242187 45.421875 26.566406 60.414062l189.738281 189.738282c10.042969-.875 20.085937-1.847656 30.121094-2.917969 43.667969-4.660156 78.15625-39.148437 82.816406-82.816406 1.070313-10.035157 2.042969-20.078125 2.917969-30.121094zm0 0\" fill=\"url(#g)\"></path><path d=\"m511.007812 311.152344-152.703124-152.699219c-3.5625-4.675781-9.175782-7.710937-15.507813-7.710937-10.773437 0-19.511719 8.734374-19.511719 19.511718 0 6.332032 3.035156 11.945313 7.710938 15.507813l177.28125 177.285156c1.203125-17.292969 2.113281-34.59375 2.730468-51.894531zm0 0\" fill=\"url(#h)\"></path><path d=\"m95.089844 193.902344c1.066406-7.53125 1.878906-15.105469 3.234375-22.582032 7.683593-42.347656 37.664062-71.160156 80.53125-72.636718 51.613281-1.773438 103.382812-1.867188 154.988281-.007813 46.65625 1.679688 80.445312 36.226563 81.902344 82.898438 1.550781 49.558593 1.550781 99.238281 0 148.796875-1.457032 46.671875-35.234375 81.214844-81.898438 82.898437-51.605468 1.863281-103.386718 1.910157-154.988281-.027343-46.664063-1.753907-78.921875-36.378907-82.042969-83.121094-.269531-4.042969-1.136718-8.050782-1.726562-12.074219 0-41.382813 0-82.765625 0-124.144531zm160.953125 191.707031c23.617187 0 47.257812.707031 70.84375-.164063 36.980469-1.371093 59.726562-23.441406 60.589843-60.386718 1.070313-46.035156 1.070313-92.132813 0-138.171875-.863281-36.9375-23.625-59.523438-60.589843-60.308594-46.917969-.992187-93.886719-.984375-140.804688 0-36.683593.769531-59.496093 22.898437-60.492187 59.429687-1.265625 46.617188-1.265625 93.316407 0 139.933594.996094 36.527344 23.808594 58.144532 60.496094 59.503906 23.289062.867188 46.636718.164063 69.957031.164063zm0 0\" fill=\"url(#i)\"></path><g fill=\"#fff\"><path d=\"m95.089844 193.902344c1.066406-7.53125 1.878906-15.105469 3.234375-22.582032 7.683593-42.347656 37.664062-71.160156 80.53125-72.636718 51.613281-1.773438 103.382812-1.867188 154.988281-.007813 46.65625 1.679688 80.445312 36.226563 81.902344 82.898438 1.550781 49.558593 1.550781 99.238281 0 148.796875-1.457032 46.671875-35.234375 81.214844-81.898438 82.898437-51.605468 1.863281-103.386718 1.910157-154.988281-.027343-46.664063-1.753907-78.921875-36.378907-82.042969-83.121094-.269531-4.042969-1.136718-8.050782-1.726562-12.074219 0-41.382813 0-82.765625 0-124.144531zm160.953125 191.707031c23.617187 0 47.257812.707031 70.84375-.164063 36.980469-1.371093 59.726562-23.441406 60.589843-60.386718 1.070313-46.035156 1.070313-92.132813 0-138.171875-.863281-36.9375-23.625-59.523438-60.589843-60.308594-46.917969-.992187-93.886719-.984375-140.804688 0-36.683593.769531-59.496093 22.898437-60.492187 59.429687-1.265625 46.617188-1.265625 93.316407 0 139.933594.996094 36.527344 23.808594 58.144532 60.496094 59.503906 23.289062.867188 46.636718.164063 69.957031.164063zm0 0\"></path><path d=\"m256 173.996094c-45.289062 0-82.007812 36.714844-82.007812 82.003906 0 45.292969 36.71875 82.007812 82.007812 82.007812 45.292969 0 82.007812-36.714843 82.007812-82.007812 0-45.289062-36.714843-82.003906-82.007812-82.003906zm0 135.777344c-29.699219 0-53.773438-24.074219-53.773438-53.773438s24.074219-53.773438 53.773438-53.773438 53.773438 24.074219 53.773438 53.773438-24.074219 53.773438-53.773438 53.773438zm0 0\"></path><path d=\"m362.304688 170.253906c0 10.773438-8.734376 19.507813-19.507813 19.507813s-19.511719-8.734375-19.511719-19.507813c0-10.777344 8.738282-19.511718 19.511719-19.511718s19.507813 8.734374 19.507813 19.511718zm0 0\"></path></g></svg>			</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:50:36', '2026-04-05 09:50:36', '', 10, 'https://mrarif.me/drsarah/?p=185', 0, 'revision', '', 0),
(186, 1, '2026-04-05 09:50:36', '2026-04-05 09:50:36', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" height=\"512pt\" viewBox=\"0 0 512 512.00038\" width=\"512pt\"><radialGradient id=\"a\" cx=\"104.9571229418\" cy=\"447.4474330468\" gradientUnits=\"userSpaceOnUse\" r=\"564.64588968\"><stop offset=\"0\" stop-color=\"#fae100\"></stop><stop offset=\".0544\" stop-color=\"#fadc04\"></stop><stop offset=\".1167\" stop-color=\"#fbce0e\"></stop><stop offset=\".1829\" stop-color=\"#fcb720\"></stop><stop offset=\".2514\" stop-color=\"#fe9838\"></stop><stop offset=\".3054\" stop-color=\"#ff7950\"></stop><stop offset=\".4922\" stop-color=\"#ff1c74\"></stop><stop offset=\"1\" stop-color=\"#6c1cd1\"></stop></radialGradient><linearGradient id=\"b\" gradientUnits=\"userSpaceOnUse\" x1=\"196.3726539866\" x2=\"-671.0159540134\" y1=\"222.4596783332\" y2=\"-265.4464136668\"><stop offset=\"0\" stop-color=\"#a1b5d8\" stop-opacity=\"0\"></stop><stop offset=\".3094\" stop-color=\"#90a2bd\" stop-opacity=\".309804\"></stop><stop offset=\".7554\" stop-color=\"#7c8b9c\" stop-opacity=\".756863\"></stop><stop offset=\"1\" stop-color=\"#748290\"></stop></linearGradient><linearGradient id=\"c\" gradientUnits=\"userSpaceOnUse\" x1=\"256.0003\" x2=\"256.0003\" y1=\"451.9660859688\" y2=\"531.773969673\"><stop offset=\"0\" stop-color=\"#fae100\" stop-opacity=\"0\"></stop><stop offset=\".3068\" stop-color=\"#fca800\" stop-opacity=\".305882\"></stop><stop offset=\".6275\" stop-color=\"#fe7300\" stop-opacity=\".627451\"></stop><stop offset=\".8685\" stop-color=\"#ff5200\" stop-opacity=\".866667\"></stop><stop offset=\"1\" stop-color=\"#ff4500\"></stop></linearGradient><linearGradient id=\"d\"><stop offset=\"0\" stop-color=\"#833ab4\" stop-opacity=\"0\"></stop><stop offset=\"1\" stop-color=\"#833ab4\"></stop></linearGradient><linearGradient id=\"e\" gradientUnits=\"userSpaceOnUse\" x1=\"226.8724066998\" x2=\"100.1606848024\" xlink:href=\"#d\" y1=\"226.147987369\" y2=\"99.4361650794\"></linearGradient><linearGradient id=\"f\" gradientUnits=\"userSpaceOnUse\" x1=\"350.899540777\" x2=\"287.6555669352\" xlink:href=\"#d\" y1=\"468.287448276\" y2=\"170.1375727138\"></linearGradient><linearGradient id=\"g\" gradientUnits=\"userSpaceOnUse\" x1=\"374.965057\" x2=\"120.9410670648\" xlink:href=\"#d\" y1=\"374.9649673922\" y2=\"120.9408770648\"></linearGradient><linearGradient id=\"h\" gradientUnits=\"userSpaceOnUse\" x1=\"393.806665096\" x2=\"309.8058007666\" xlink:href=\"#d\" y1=\"221.2631037014\" y2=\"137.2623397642\"></linearGradient><linearGradient id=\"i\" gradientUnits=\"userSpaceOnUse\" x1=\"357.6582448576\" x2=\"150.5426107646\" y1=\"155.0495285836\" y2=\"362.1651626766\"><stop offset=\"0\" stop-color=\"#833ab4\"></stop><stop offset=\".0922\" stop-color=\"#9c3495\"></stop><stop offset=\".2927\" stop-color=\"#dc2546\"></stop><stop offset=\".392\" stop-color=\"#fd1d1d\"></stop><stop offset=\".5589\" stop-color=\"#fc6831\"></stop><stop offset=\".6887\" stop-color=\"#fc9b40\"></stop><stop offset=\".7521\" stop-color=\"#fcaf45\"></stop><stop offset=\".7806\" stop-color=\"#fdb750\"></stop><stop offset=\".8656\" stop-color=\"#fecb6a\"></stop><stop offset=\".9415\" stop-color=\"#ffd87a\"></stop><stop offset=\"1\" stop-color=\"#ffdc80\"></stop></linearGradient><path d=\"m503.234375 91.578125c-4.660156-43.664063-39.144531-78.15625-82.8125-82.8125-109.507813-11.6875-219.335937-11.6875-328.839844 0-43.667969 4.660156-78.15625 39.148437-82.816406 82.8125-11.6875 109.503906-11.6875 219.335937 0 328.839844 4.660156 43.667969 39.148437 78.15625 82.8125 82.816406 109.503906 11.6875 219.335937 11.6875 328.84375 0 43.667969-4.660156 78.152344-39.148437 82.8125-82.816406 11.6875-109.503907 11.6875-219.332031 0-328.839844zm0 0\" fill=\"url(#a)\"></path><path d=\"m475.386719 110.097656c-4.132813-38.746094-34.734375-69.351562-73.484375-73.488281-97.171875-10.367187-194.632813-10.367187-291.804688 0-38.746094 4.136719-69.351562 34.742187-73.488281 73.488281-10.367187 97.171875-10.367187 194.632813 0 291.800782 4.136719 38.75 34.742187 69.355468 73.488281 73.488281 97.171875 10.371093 194.632813 10.371093 291.800782 0 38.75-4.132813 69.355468-34.738281 73.488281-73.488281 10.371093-97.167969 10.371093-194.628907 0-291.800782zm0 0\" fill=\"url(#b)\"></path><path d=\"m7.671875 409.804688c.351563 3.539062.714844 7.078124 1.09375 10.617187 4.660156 43.664063 39.148437 78.152344 82.816406 82.8125 109.503907 11.6875 219.335938 11.6875 328.839844 0 43.667969-4.660156 78.152344-39.148437 82.8125-82.8125.378906-3.539063.742187-7.078125 1.097656-10.617187zm0 0\" fill=\"url(#c)\"></path><path d=\"m503.234375 420.417969c6.28125-58.839844 9.179687-117.773438 8.710937-176.699219l-117.03125-117.03125c-14.621093-16.691406-35.976562-27.109375-61.070312-28.011719-51.605469-1.859375-103.375-1.765625-154.988281.007813-42.867188 1.476562-72.84375 30.289062-80.53125 72.636718-1.355469 7.476563-2.167969 15.050782-3.234375 22.582032v124.148437c.589844 4.023438 1.457031 8.027344 1.726562 12.074219 1.71875 25.757812 12.304688 47.820312 29.253906 62.746094l119.09375 119.089844c58.445313.410156 116.894532-2.496094 175.257813-8.726563 43.667969-4.660156 78.152344-39.148437 82.8125-82.816406zm0 0\" fill=\"url(#e)\"></path><path d=\"m503.234375 420.421875c-4.65625 43.660156-39.152344 78.15625-82.8125 82.8125-58.355469 6.226563-116.816406 9.136719-175.253906 8.726563l-118.914063-118.914063c13.785156 12.066406 31.753906 19.414063 52.605469 20.199219 51.601563 1.9375 103.382813 1.886718 154.984375.027344 46.671875-1.6875 80.445312-36.230469 81.902344-82.902344 1.554687-49.554688 1.554687-99.238282 0-148.792969-.664063-21.53125-8.222656-40.476563-20.753906-54.8125l116.957031 116.957031c.460937 58.917969-2.4375 117.859375-8.714844 176.699219zm0 0\" fill=\"url(#f)\"></path><path d=\"m316.414062 200.558594c-14.992187-16.324219-36.503906-26.566406-60.414062-26.566406-45.289062 0-82.007812 36.71875-82.007812 82.007812 0 23.910156 10.242187 45.421875 26.566406 60.414062l189.738281 189.738282c10.042969-.875 20.085937-1.847656 30.121094-2.917969 43.667969-4.660156 78.15625-39.148437 82.816406-82.816406 1.070313-10.035157 2.042969-20.078125 2.917969-30.121094zm0 0\" fill=\"url(#g)\"></path><path d=\"m511.007812 311.152344-152.703124-152.699219c-3.5625-4.675781-9.175782-7.710937-15.507813-7.710937-10.773437 0-19.511719 8.734374-19.511719 19.511718 0 6.332032 3.035156 11.945313 7.710938 15.507813l177.28125 177.285156c1.203125-17.292969 2.113281-34.59375 2.730468-51.894531zm0 0\" fill=\"url(#h)\"></path><path d=\"m95.089844 193.902344c1.066406-7.53125 1.878906-15.105469 3.234375-22.582032 7.683593-42.347656 37.664062-71.160156 80.53125-72.636718 51.613281-1.773438 103.382812-1.867188 154.988281-.007813 46.65625 1.679688 80.445312 36.226563 81.902344 82.898438 1.550781 49.558593 1.550781 99.238281 0 148.796875-1.457032 46.671875-35.234375 81.214844-81.898438 82.898437-51.605468 1.863281-103.386718 1.910157-154.988281-.027343-46.664063-1.753907-78.921875-36.378907-82.042969-83.121094-.269531-4.042969-1.136718-8.050782-1.726562-12.074219 0-41.382813 0-82.765625 0-124.144531zm160.953125 191.707031c23.617187 0 47.257812.707031 70.84375-.164063 36.980469-1.371093 59.726562-23.441406 60.589843-60.386718 1.070313-46.035156 1.070313-92.132813 0-138.171875-.863281-36.9375-23.625-59.523438-60.589843-60.308594-46.917969-.992187-93.886719-.984375-140.804688 0-36.683593.769531-59.496093 22.898437-60.492187 59.429687-1.265625 46.617188-1.265625 93.316407 0 139.933594.996094 36.527344 23.808594 58.144532 60.496094 59.503906 23.289062.867188 46.636718.164063 69.957031.164063zm0 0\" fill=\"url(#i)\"></path><g fill=\"#fff\"><path d=\"m95.089844 193.902344c1.066406-7.53125 1.878906-15.105469 3.234375-22.582032 7.683593-42.347656 37.664062-71.160156 80.53125-72.636718 51.613281-1.773438 103.382812-1.867188 154.988281-.007813 46.65625 1.679688 80.445312 36.226563 81.902344 82.898438 1.550781 49.558593 1.550781 99.238281 0 148.796875-1.457032 46.671875-35.234375 81.214844-81.898438 82.898437-51.605468 1.863281-103.386718 1.910157-154.988281-.027343-46.664063-1.753907-78.921875-36.378907-82.042969-83.121094-.269531-4.042969-1.136718-8.050782-1.726562-12.074219 0-41.382813 0-82.765625 0-124.144531zm160.953125 191.707031c23.617187 0 47.257812.707031 70.84375-.164063 36.980469-1.371093 59.726562-23.441406 60.589843-60.386718 1.070313-46.035156 1.070313-92.132813 0-138.171875-.863281-36.9375-23.625-59.523438-60.589843-60.308594-46.917969-.992187-93.886719-.984375-140.804688 0-36.683593.769531-59.496093 22.898437-60.492187 59.429687-1.265625 46.617188-1.265625 93.316407 0 139.933594.996094 36.527344 23.808594 58.144532 60.496094 59.503906 23.289062.867188 46.636718.164063 69.957031.164063zm0 0\"></path><path d=\"m256 173.996094c-45.289062 0-82.007812 36.714844-82.007812 82.003906 0 45.292969 36.71875 82.007812 82.007812 82.007812 45.292969 0 82.007812-36.714843 82.007812-82.007812 0-45.289062-36.714843-82.003906-82.007812-82.003906zm0 135.777344c-29.699219 0-53.773438-24.074219-53.773438-53.773438s24.074219-53.773438 53.773438-53.773438 53.773438 24.074219 53.773438 53.773438-24.074219 53.773438-53.773438 53.773438zm0 0\"></path><path d=\"m362.304688 170.253906c0 10.773438-8.734376 19.507813-19.507813 19.507813s-19.511719-8.734375-19.511719-19.507813c0-10.777344 8.738282-19.511718 19.511719-19.511718s19.507813 8.734374 19.507813 19.511718zm0 0\"></path></g></svg>			</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:50:36', '2026-04-05 09:50:36', '', 10, 'https://mrarif.me/drsarah/?p=186', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(187, 1, '2026-04-05 09:53:13', '2026-04-05 09:53:13', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" height=\"512pt\" viewBox=\"0 0 512 512.00038\" width=\"512pt\"><radialGradient id=\"a\" cx=\"104.9571229418\" cy=\"447.4474330468\" gradientUnits=\"userSpaceOnUse\" r=\"564.64588968\"><stop offset=\"0\" stop-color=\"#fae100\"></stop><stop offset=\".0544\" stop-color=\"#fadc04\"></stop><stop offset=\".1167\" stop-color=\"#fbce0e\"></stop><stop offset=\".1829\" stop-color=\"#fcb720\"></stop><stop offset=\".2514\" stop-color=\"#fe9838\"></stop><stop offset=\".3054\" stop-color=\"#ff7950\"></stop><stop offset=\".4922\" stop-color=\"#ff1c74\"></stop><stop offset=\"1\" stop-color=\"#6c1cd1\"></stop></radialGradient><linearGradient id=\"b\" gradientUnits=\"userSpaceOnUse\" x1=\"196.3726539866\" x2=\"-671.0159540134\" y1=\"222.4596783332\" y2=\"-265.4464136668\"><stop offset=\"0\" stop-color=\"#a1b5d8\" stop-opacity=\"0\"></stop><stop offset=\".3094\" stop-color=\"#90a2bd\" stop-opacity=\".309804\"></stop><stop offset=\".7554\" stop-color=\"#7c8b9c\" stop-opacity=\".756863\"></stop><stop offset=\"1\" stop-color=\"#748290\"></stop></linearGradient><linearGradient id=\"c\" gradientUnits=\"userSpaceOnUse\" x1=\"256.0003\" x2=\"256.0003\" y1=\"451.9660859688\" y2=\"531.773969673\"><stop offset=\"0\" stop-color=\"#fae100\" stop-opacity=\"0\"></stop><stop offset=\".3068\" stop-color=\"#fca800\" stop-opacity=\".305882\"></stop><stop offset=\".6275\" stop-color=\"#fe7300\" stop-opacity=\".627451\"></stop><stop offset=\".8685\" stop-color=\"#ff5200\" stop-opacity=\".866667\"></stop><stop offset=\"1\" stop-color=\"#ff4500\"></stop></linearGradient><linearGradient id=\"d\"><stop offset=\"0\" stop-color=\"#833ab4\" stop-opacity=\"0\"></stop><stop offset=\"1\" stop-color=\"#833ab4\"></stop></linearGradient><linearGradient id=\"e\" gradientUnits=\"userSpaceOnUse\" x1=\"226.8724066998\" x2=\"100.1606848024\" xlink:href=\"#d\" y1=\"226.147987369\" y2=\"99.4361650794\"></linearGradient><linearGradient id=\"f\" gradientUnits=\"userSpaceOnUse\" x1=\"350.899540777\" x2=\"287.6555669352\" xlink:href=\"#d\" y1=\"468.287448276\" y2=\"170.1375727138\"></linearGradient><linearGradient id=\"g\" gradientUnits=\"userSpaceOnUse\" x1=\"374.965057\" x2=\"120.9410670648\" xlink:href=\"#d\" y1=\"374.9649673922\" y2=\"120.9408770648\"></linearGradient><linearGradient id=\"h\" gradientUnits=\"userSpaceOnUse\" x1=\"393.806665096\" x2=\"309.8058007666\" xlink:href=\"#d\" y1=\"221.2631037014\" y2=\"137.2623397642\"></linearGradient><linearGradient id=\"i\" gradientUnits=\"userSpaceOnUse\" x1=\"357.6582448576\" x2=\"150.5426107646\" y1=\"155.0495285836\" y2=\"362.1651626766\"><stop offset=\"0\" stop-color=\"#833ab4\"></stop><stop offset=\".0922\" stop-color=\"#9c3495\"></stop><stop offset=\".2927\" stop-color=\"#dc2546\"></stop><stop offset=\".392\" stop-color=\"#fd1d1d\"></stop><stop offset=\".5589\" stop-color=\"#fc6831\"></stop><stop offset=\".6887\" stop-color=\"#fc9b40\"></stop><stop offset=\".7521\" stop-color=\"#fcaf45\"></stop><stop offset=\".7806\" stop-color=\"#fdb750\"></stop><stop offset=\".8656\" stop-color=\"#fecb6a\"></stop><stop offset=\".9415\" stop-color=\"#ffd87a\"></stop><stop offset=\"1\" stop-color=\"#ffdc80\"></stop></linearGradient><path d=\"m503.234375 91.578125c-4.660156-43.664063-39.144531-78.15625-82.8125-82.8125-109.507813-11.6875-219.335937-11.6875-328.839844 0-43.667969 4.660156-78.15625 39.148437-82.816406 82.8125-11.6875 109.503906-11.6875 219.335937 0 328.839844 4.660156 43.667969 39.148437 78.15625 82.8125 82.816406 109.503906 11.6875 219.335937 11.6875 328.84375 0 43.667969-4.660156 78.152344-39.148437 82.8125-82.816406 11.6875-109.503907 11.6875-219.332031 0-328.839844zm0 0\" fill=\"url(#a)\"></path><path d=\"m475.386719 110.097656c-4.132813-38.746094-34.734375-69.351562-73.484375-73.488281-97.171875-10.367187-194.632813-10.367187-291.804688 0-38.746094 4.136719-69.351562 34.742187-73.488281 73.488281-10.367187 97.171875-10.367187 194.632813 0 291.800782 4.136719 38.75 34.742187 69.355468 73.488281 73.488281 97.171875 10.371093 194.632813 10.371093 291.800782 0 38.75-4.132813 69.355468-34.738281 73.488281-73.488281 10.371093-97.167969 10.371093-194.628907 0-291.800782zm0 0\" fill=\"url(#b)\"></path><path d=\"m7.671875 409.804688c.351563 3.539062.714844 7.078124 1.09375 10.617187 4.660156 43.664063 39.148437 78.152344 82.816406 82.8125 109.503907 11.6875 219.335938 11.6875 328.839844 0 43.667969-4.660156 78.152344-39.148437 82.8125-82.8125.378906-3.539063.742187-7.078125 1.097656-10.617187zm0 0\" fill=\"url(#c)\"></path><path d=\"m503.234375 420.417969c6.28125-58.839844 9.179687-117.773438 8.710937-176.699219l-117.03125-117.03125c-14.621093-16.691406-35.976562-27.109375-61.070312-28.011719-51.605469-1.859375-103.375-1.765625-154.988281.007813-42.867188 1.476562-72.84375 30.289062-80.53125 72.636718-1.355469 7.476563-2.167969 15.050782-3.234375 22.582032v124.148437c.589844 4.023438 1.457031 8.027344 1.726562 12.074219 1.71875 25.757812 12.304688 47.820312 29.253906 62.746094l119.09375 119.089844c58.445313.410156 116.894532-2.496094 175.257813-8.726563 43.667969-4.660156 78.152344-39.148437 82.8125-82.816406zm0 0\" fill=\"url(#e)\"></path><path d=\"m503.234375 420.421875c-4.65625 43.660156-39.152344 78.15625-82.8125 82.8125-58.355469 6.226563-116.816406 9.136719-175.253906 8.726563l-118.914063-118.914063c13.785156 12.066406 31.753906 19.414063 52.605469 20.199219 51.601563 1.9375 103.382813 1.886718 154.984375.027344 46.671875-1.6875 80.445312-36.230469 81.902344-82.902344 1.554687-49.554688 1.554687-99.238282 0-148.792969-.664063-21.53125-8.222656-40.476563-20.753906-54.8125l116.957031 116.957031c.460937 58.917969-2.4375 117.859375-8.714844 176.699219zm0 0\" fill=\"url(#f)\"></path><path d=\"m316.414062 200.558594c-14.992187-16.324219-36.503906-26.566406-60.414062-26.566406-45.289062 0-82.007812 36.71875-82.007812 82.007812 0 23.910156 10.242187 45.421875 26.566406 60.414062l189.738281 189.738282c10.042969-.875 20.085937-1.847656 30.121094-2.917969 43.667969-4.660156 78.15625-39.148437 82.816406-82.816406 1.070313-10.035157 2.042969-20.078125 2.917969-30.121094zm0 0\" fill=\"url(#g)\"></path><path d=\"m511.007812 311.152344-152.703124-152.699219c-3.5625-4.675781-9.175782-7.710937-15.507813-7.710937-10.773437 0-19.511719 8.734374-19.511719 19.511718 0 6.332032 3.035156 11.945313 7.710938 15.507813l177.28125 177.285156c1.203125-17.292969 2.113281-34.59375 2.730468-51.894531zm0 0\" fill=\"url(#h)\"></path><path d=\"m95.089844 193.902344c1.066406-7.53125 1.878906-15.105469 3.234375-22.582032 7.683593-42.347656 37.664062-71.160156 80.53125-72.636718 51.613281-1.773438 103.382812-1.867188 154.988281-.007813 46.65625 1.679688 80.445312 36.226563 81.902344 82.898438 1.550781 49.558593 1.550781 99.238281 0 148.796875-1.457032 46.671875-35.234375 81.214844-81.898438 82.898437-51.605468 1.863281-103.386718 1.910157-154.988281-.027343-46.664063-1.753907-78.921875-36.378907-82.042969-83.121094-.269531-4.042969-1.136718-8.050782-1.726562-12.074219 0-41.382813 0-82.765625 0-124.144531zm160.953125 191.707031c23.617187 0 47.257812.707031 70.84375-.164063 36.980469-1.371093 59.726562-23.441406 60.589843-60.386718 1.070313-46.035156 1.070313-92.132813 0-138.171875-.863281-36.9375-23.625-59.523438-60.589843-60.308594-46.917969-.992187-93.886719-.984375-140.804688 0-36.683593.769531-59.496093 22.898437-60.492187 59.429687-1.265625 46.617188-1.265625 93.316407 0 139.933594.996094 36.527344 23.808594 58.144532 60.496094 59.503906 23.289062.867188 46.636718.164063 69.957031.164063zm0 0\" fill=\"url(#i)\"></path><g fill=\"#fff\"><path d=\"m95.089844 193.902344c1.066406-7.53125 1.878906-15.105469 3.234375-22.582032 7.683593-42.347656 37.664062-71.160156 80.53125-72.636718 51.613281-1.773438 103.382812-1.867188 154.988281-.007813 46.65625 1.679688 80.445312 36.226563 81.902344 82.898438 1.550781 49.558593 1.550781 99.238281 0 148.796875-1.457032 46.671875-35.234375 81.214844-81.898438 82.898437-51.605468 1.863281-103.386718 1.910157-154.988281-.027343-46.664063-1.753907-78.921875-36.378907-82.042969-83.121094-.269531-4.042969-1.136718-8.050782-1.726562-12.074219 0-41.382813 0-82.765625 0-124.144531zm160.953125 191.707031c23.617187 0 47.257812.707031 70.84375-.164063 36.980469-1.371093 59.726562-23.441406 60.589843-60.386718 1.070313-46.035156 1.070313-92.132813 0-138.171875-.863281-36.9375-23.625-59.523438-60.589843-60.308594-46.917969-.992187-93.886719-.984375-140.804688 0-36.683593.769531-59.496093 22.898437-60.492187 59.429687-1.265625 46.617188-1.265625 93.316407 0 139.933594.996094 36.527344 23.808594 58.144532 60.496094 59.503906 23.289062.867188 46.636718.164063 69.957031.164063zm0 0\"></path><path d=\"m256 173.996094c-45.289062 0-82.007812 36.714844-82.007812 82.003906 0 45.292969 36.71875 82.007812 82.007812 82.007812 45.292969 0 82.007812-36.714843 82.007812-82.007812 0-45.289062-36.714843-82.003906-82.007812-82.003906zm0 135.777344c-29.699219 0-53.773438-24.074219-53.773438-53.773438s24.074219-53.773438 53.773438-53.773438 53.773438 24.074219 53.773438 53.773438-24.074219 53.773438-53.773438 53.773438zm0 0\"></path><path d=\"m362.304688 170.253906c0 10.773438-8.734376 19.507813-19.507813 19.507813s-19.511719-8.734375-19.511719-19.507813c0-10.777344 8.738282-19.511718 19.511719-19.511718s19.507813 8.734374 19.507813 19.511718zm0 0\"></path></g></svg>			</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:53:13', '2026-04-05 09:53:13', '', 10, 'https://mrarif.me/drsarah/?p=187', 0, 'revision', '', 0),
(188, 1, '2026-04-05 09:53:13', '2026-04-05 09:53:13', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n			<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" height=\"512pt\" viewBox=\"0 0 512 512.00038\" width=\"512pt\"><radialGradient id=\"a\" cx=\"104.9571229418\" cy=\"447.4474330468\" gradientUnits=\"userSpaceOnUse\" r=\"564.64588968\"><stop offset=\"0\" stop-color=\"#fae100\"></stop><stop offset=\".0544\" stop-color=\"#fadc04\"></stop><stop offset=\".1167\" stop-color=\"#fbce0e\"></stop><stop offset=\".1829\" stop-color=\"#fcb720\"></stop><stop offset=\".2514\" stop-color=\"#fe9838\"></stop><stop offset=\".3054\" stop-color=\"#ff7950\"></stop><stop offset=\".4922\" stop-color=\"#ff1c74\"></stop><stop offset=\"1\" stop-color=\"#6c1cd1\"></stop></radialGradient><linearGradient id=\"b\" gradientUnits=\"userSpaceOnUse\" x1=\"196.3726539866\" x2=\"-671.0159540134\" y1=\"222.4596783332\" y2=\"-265.4464136668\"><stop offset=\"0\" stop-color=\"#a1b5d8\" stop-opacity=\"0\"></stop><stop offset=\".3094\" stop-color=\"#90a2bd\" stop-opacity=\".309804\"></stop><stop offset=\".7554\" stop-color=\"#7c8b9c\" stop-opacity=\".756863\"></stop><stop offset=\"1\" stop-color=\"#748290\"></stop></linearGradient><linearGradient id=\"c\" gradientUnits=\"userSpaceOnUse\" x1=\"256.0003\" x2=\"256.0003\" y1=\"451.9660859688\" y2=\"531.773969673\"><stop offset=\"0\" stop-color=\"#fae100\" stop-opacity=\"0\"></stop><stop offset=\".3068\" stop-color=\"#fca800\" stop-opacity=\".305882\"></stop><stop offset=\".6275\" stop-color=\"#fe7300\" stop-opacity=\".627451\"></stop><stop offset=\".8685\" stop-color=\"#ff5200\" stop-opacity=\".866667\"></stop><stop offset=\"1\" stop-color=\"#ff4500\"></stop></linearGradient><linearGradient id=\"d\"><stop offset=\"0\" stop-color=\"#833ab4\" stop-opacity=\"0\"></stop><stop offset=\"1\" stop-color=\"#833ab4\"></stop></linearGradient><linearGradient id=\"e\" gradientUnits=\"userSpaceOnUse\" x1=\"226.8724066998\" x2=\"100.1606848024\" xlink:href=\"#d\" y1=\"226.147987369\" y2=\"99.4361650794\"></linearGradient><linearGradient id=\"f\" gradientUnits=\"userSpaceOnUse\" x1=\"350.899540777\" x2=\"287.6555669352\" xlink:href=\"#d\" y1=\"468.287448276\" y2=\"170.1375727138\"></linearGradient><linearGradient id=\"g\" gradientUnits=\"userSpaceOnUse\" x1=\"374.965057\" x2=\"120.9410670648\" xlink:href=\"#d\" y1=\"374.9649673922\" y2=\"120.9408770648\"></linearGradient><linearGradient id=\"h\" gradientUnits=\"userSpaceOnUse\" x1=\"393.806665096\" x2=\"309.8058007666\" xlink:href=\"#d\" y1=\"221.2631037014\" y2=\"137.2623397642\"></linearGradient><linearGradient id=\"i\" gradientUnits=\"userSpaceOnUse\" x1=\"357.6582448576\" x2=\"150.5426107646\" y1=\"155.0495285836\" y2=\"362.1651626766\"><stop offset=\"0\" stop-color=\"#833ab4\"></stop><stop offset=\".0922\" stop-color=\"#9c3495\"></stop><stop offset=\".2927\" stop-color=\"#dc2546\"></stop><stop offset=\".392\" stop-color=\"#fd1d1d\"></stop><stop offset=\".5589\" stop-color=\"#fc6831\"></stop><stop offset=\".6887\" stop-color=\"#fc9b40\"></stop><stop offset=\".7521\" stop-color=\"#fcaf45\"></stop><stop offset=\".7806\" stop-color=\"#fdb750\"></stop><stop offset=\".8656\" stop-color=\"#fecb6a\"></stop><stop offset=\".9415\" stop-color=\"#ffd87a\"></stop><stop offset=\"1\" stop-color=\"#ffdc80\"></stop></linearGradient><path d=\"m503.234375 91.578125c-4.660156-43.664063-39.144531-78.15625-82.8125-82.8125-109.507813-11.6875-219.335937-11.6875-328.839844 0-43.667969 4.660156-78.15625 39.148437-82.816406 82.8125-11.6875 109.503906-11.6875 219.335937 0 328.839844 4.660156 43.667969 39.148437 78.15625 82.8125 82.816406 109.503906 11.6875 219.335937 11.6875 328.84375 0 43.667969-4.660156 78.152344-39.148437 82.8125-82.816406 11.6875-109.503907 11.6875-219.332031 0-328.839844zm0 0\" fill=\"url(#a)\"></path><path d=\"m475.386719 110.097656c-4.132813-38.746094-34.734375-69.351562-73.484375-73.488281-97.171875-10.367187-194.632813-10.367187-291.804688 0-38.746094 4.136719-69.351562 34.742187-73.488281 73.488281-10.367187 97.171875-10.367187 194.632813 0 291.800782 4.136719 38.75 34.742187 69.355468 73.488281 73.488281 97.171875 10.371093 194.632813 10.371093 291.800782 0 38.75-4.132813 69.355468-34.738281 73.488281-73.488281 10.371093-97.167969 10.371093-194.628907 0-291.800782zm0 0\" fill=\"url(#b)\"></path><path d=\"m7.671875 409.804688c.351563 3.539062.714844 7.078124 1.09375 10.617187 4.660156 43.664063 39.148437 78.152344 82.816406 82.8125 109.503907 11.6875 219.335938 11.6875 328.839844 0 43.667969-4.660156 78.152344-39.148437 82.8125-82.8125.378906-3.539063.742187-7.078125 1.097656-10.617187zm0 0\" fill=\"url(#c)\"></path><path d=\"m503.234375 420.417969c6.28125-58.839844 9.179687-117.773438 8.710937-176.699219l-117.03125-117.03125c-14.621093-16.691406-35.976562-27.109375-61.070312-28.011719-51.605469-1.859375-103.375-1.765625-154.988281.007813-42.867188 1.476562-72.84375 30.289062-80.53125 72.636718-1.355469 7.476563-2.167969 15.050782-3.234375 22.582032v124.148437c.589844 4.023438 1.457031 8.027344 1.726562 12.074219 1.71875 25.757812 12.304688 47.820312 29.253906 62.746094l119.09375 119.089844c58.445313.410156 116.894532-2.496094 175.257813-8.726563 43.667969-4.660156 78.152344-39.148437 82.8125-82.816406zm0 0\" fill=\"url(#e)\"></path><path d=\"m503.234375 420.421875c-4.65625 43.660156-39.152344 78.15625-82.8125 82.8125-58.355469 6.226563-116.816406 9.136719-175.253906 8.726563l-118.914063-118.914063c13.785156 12.066406 31.753906 19.414063 52.605469 20.199219 51.601563 1.9375 103.382813 1.886718 154.984375.027344 46.671875-1.6875 80.445312-36.230469 81.902344-82.902344 1.554687-49.554688 1.554687-99.238282 0-148.792969-.664063-21.53125-8.222656-40.476563-20.753906-54.8125l116.957031 116.957031c.460937 58.917969-2.4375 117.859375-8.714844 176.699219zm0 0\" fill=\"url(#f)\"></path><path d=\"m316.414062 200.558594c-14.992187-16.324219-36.503906-26.566406-60.414062-26.566406-45.289062 0-82.007812 36.71875-82.007812 82.007812 0 23.910156 10.242187 45.421875 26.566406 60.414062l189.738281 189.738282c10.042969-.875 20.085937-1.847656 30.121094-2.917969 43.667969-4.660156 78.15625-39.148437 82.816406-82.816406 1.070313-10.035157 2.042969-20.078125 2.917969-30.121094zm0 0\" fill=\"url(#g)\"></path><path d=\"m511.007812 311.152344-152.703124-152.699219c-3.5625-4.675781-9.175782-7.710937-15.507813-7.710937-10.773437 0-19.511719 8.734374-19.511719 19.511718 0 6.332032 3.035156 11.945313 7.710938 15.507813l177.28125 177.285156c1.203125-17.292969 2.113281-34.59375 2.730468-51.894531zm0 0\" fill=\"url(#h)\"></path><path d=\"m95.089844 193.902344c1.066406-7.53125 1.878906-15.105469 3.234375-22.582032 7.683593-42.347656 37.664062-71.160156 80.53125-72.636718 51.613281-1.773438 103.382812-1.867188 154.988281-.007813 46.65625 1.679688 80.445312 36.226563 81.902344 82.898438 1.550781 49.558593 1.550781 99.238281 0 148.796875-1.457032 46.671875-35.234375 81.214844-81.898438 82.898437-51.605468 1.863281-103.386718 1.910157-154.988281-.027343-46.664063-1.753907-78.921875-36.378907-82.042969-83.121094-.269531-4.042969-1.136718-8.050782-1.726562-12.074219 0-41.382813 0-82.765625 0-124.144531zm160.953125 191.707031c23.617187 0 47.257812.707031 70.84375-.164063 36.980469-1.371093 59.726562-23.441406 60.589843-60.386718 1.070313-46.035156 1.070313-92.132813 0-138.171875-.863281-36.9375-23.625-59.523438-60.589843-60.308594-46.917969-.992187-93.886719-.984375-140.804688 0-36.683593.769531-59.496093 22.898437-60.492187 59.429687-1.265625 46.617188-1.265625 93.316407 0 139.933594.996094 36.527344 23.808594 58.144532 60.496094 59.503906 23.289062.867188 46.636718.164063 69.957031.164063zm0 0\" fill=\"url(#i)\"></path><g fill=\"#fff\"><path d=\"m95.089844 193.902344c1.066406-7.53125 1.878906-15.105469 3.234375-22.582032 7.683593-42.347656 37.664062-71.160156 80.53125-72.636718 51.613281-1.773438 103.382812-1.867188 154.988281-.007813 46.65625 1.679688 80.445312 36.226563 81.902344 82.898438 1.550781 49.558593 1.550781 99.238281 0 148.796875-1.457032 46.671875-35.234375 81.214844-81.898438 82.898437-51.605468 1.863281-103.386718 1.910157-154.988281-.027343-46.664063-1.753907-78.921875-36.378907-82.042969-83.121094-.269531-4.042969-1.136718-8.050782-1.726562-12.074219 0-41.382813 0-82.765625 0-124.144531zm160.953125 191.707031c23.617187 0 47.257812.707031 70.84375-.164063 36.980469-1.371093 59.726562-23.441406 60.589843-60.386718 1.070313-46.035156 1.070313-92.132813 0-138.171875-.863281-36.9375-23.625-59.523438-60.589843-60.308594-46.917969-.992187-93.886719-.984375-140.804688 0-36.683593.769531-59.496093 22.898437-60.492187 59.429687-1.265625 46.617188-1.265625 93.316407 0 139.933594.996094 36.527344 23.808594 58.144532 60.496094 59.503906 23.289062.867188 46.636718.164063 69.957031.164063zm0 0\"></path><path d=\"m256 173.996094c-45.289062 0-82.007812 36.714844-82.007812 82.003906 0 45.292969 36.71875 82.007812 82.007812 82.007812 45.292969 0 82.007812-36.714843 82.007812-82.007812 0-45.289062-36.714843-82.003906-82.007812-82.003906zm0 135.777344c-29.699219 0-53.773438-24.074219-53.773438-53.773438s24.074219-53.773438 53.773438-53.773438 53.773438 24.074219 53.773438 53.773438-24.074219 53.773438-53.773438 53.773438zm0 0\"></path><path d=\"m362.304688 170.253906c0 10.773438-8.734376 19.507813-19.507813 19.507813s-19.511719-8.734375-19.511719-19.507813c0-10.777344 8.738282-19.511718 19.511719-19.511718s19.507813 8.734374 19.507813 19.511718zm0 0\"></path></g></svg>			</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:53:13', '2026-04-05 09:53:13', '', 10, 'https://mrarif.me/drsarah/?p=188', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(190, 1, '2026-04-05 09:53:48', '2026-04-05 09:53:48', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:53:48', '2026-04-05 09:53:48', '', 10, 'https://mrarif.me/drsarah/?p=190', 0, 'revision', '', 0),
(191, 1, '2026-04-05 09:53:48', '2026-04-05 09:53:48', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:53:48', '2026-04-05 09:53:48', '', 10, 'https://mrarif.me/drsarah/?p=191', 0, 'revision', '', 0),
(192, 1, '2026-04-05 09:53:48', '2026-04-05 09:53:48', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:53:48', '2026-04-05 09:53:48', '', 10, 'https://mrarif.me/drsarah/?p=192', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(193, 1, '2026-04-05 09:54:17', '2026-04-05 09:54:17', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:54:17', '2026-04-05 09:54:17', '', 10, 'https://mrarif.me/drsarah/?p=193', 0, 'revision', '', 0),
(194, 1, '2026-04-05 09:54:17', '2026-04-05 09:54:17', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:54:17', '2026-04-05 09:54:17', '', 10, 'https://mrarif.me/drsarah/?p=194', 0, 'revision', '', 0),
(195, 1, '2026-04-05 09:54:18', '2026-04-05 09:54:18', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:54:18', '2026-04-05 09:54:18', '', 10, 'https://mrarif.me/drsarah/?p=195', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(196, 1, '2026-04-05 09:54:54', '2026-04-05 09:54:54', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:54:54', '2026-04-05 09:54:54', '', 10, 'https://mrarif.me/drsarah/?p=196', 0, 'revision', '', 0),
(197, 1, '2026-04-05 09:54:54', '2026-04-05 09:54:54', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:54:54', '2026-04-05 09:54:54', '', 10, 'https://mrarif.me/drsarah/?p=197', 0, 'revision', '', 0),
(198, 1, '2026-04-05 09:54:54', '2026-04-05 09:54:54', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:54:54', '2026-04-05 09:54:54', '', 10, 'https://mrarif.me/drsarah/?p=198', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(199, 1, '2026-04-05 09:55:27', '2026-04-05 09:55:27', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:55:27', '2026-04-05 09:55:27', '', 10, 'https://mrarif.me/drsarah/?p=199', 0, 'revision', '', 0),
(200, 1, '2026-04-05 09:55:27', '2026-04-05 09:55:27', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:55:27', '2026-04-05 09:55:27', '', 10, 'https://mrarif.me/drsarah/?p=200', 0, 'revision', '', 0),
(201, 1, '2026-04-05 09:55:28', '2026-04-05 09:55:28', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:55:28', '2026-04-05 09:55:28', '', 10, 'https://mrarif.me/drsarah/?p=201', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(202, 1, '2026-04-05 09:56:17', '2026-04-05 09:56:17', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:56:17', '2026-04-05 09:56:17', '', 10, 'https://mrarif.me/drsarah/?p=202', 0, 'revision', '', 0),
(203, 1, '2026-04-05 09:56:17', '2026-04-05 09:56:17', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:56:17', '2026-04-05 09:56:17', '', 10, 'https://mrarif.me/drsarah/?p=203', 0, 'revision', '', 0),
(204, 1, '2026-04-05 09:56:18', '2026-04-05 09:56:18', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:56:18', '2026-04-05 09:56:18', '', 10, 'https://mrarif.me/drsarah/?p=204', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(205, 1, '2026-04-05 09:57:19', '2026-04-05 09:57:19', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:57:19', '2026-04-05 09:57:19', '', 10, 'https://mrarif.me/drsarah/?p=205', 0, 'revision', '', 0),
(206, 1, '2026-04-05 09:57:19', '2026-04-05 09:57:19', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:57:19', '2026-04-05 09:57:19', '', 10, 'https://mrarif.me/drsarah/?p=206', 0, 'revision', '', 0),
(207, 1, '2026-04-05 09:57:19', '2026-04-05 09:57:19', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:57:19', '2026-04-05 09:57:19', '', 10, 'https://mrarif.me/drsarah/?p=207', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(208, 1, '2026-04-05 09:57:34', '2026-04-05 09:57:34', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:57:34', '2026-04-05 09:57:34', '', 10, 'https://mrarif.me/drsarah/?p=208', 0, 'revision', '', 0),
(209, 1, '2026-04-05 09:57:34', '2026-04-05 09:57:34', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:57:34', '2026-04-05 09:57:34', '', 10, 'https://mrarif.me/drsarah/?p=209', 0, 'revision', '', 0),
(210, 1, '2026-04-05 09:57:34', '2026-04-05 09:57:34', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:57:34', '2026-04-05 09:57:34', '', 10, 'https://mrarif.me/drsarah/?p=210', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(211, 1, '2026-04-05 09:59:02', '2026-04-05 09:59:02', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:59:02', '2026-04-05 09:59:02', '', 10, 'https://mrarif.me/drsarah/?p=211', 0, 'revision', '', 0),
(212, 1, '2026-04-05 09:59:02', '2026-04-05 09:59:02', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:59:02', '2026-04-05 09:59:02', '', 10, 'https://mrarif.me/drsarah/?p=212', 0, 'revision', '', 0),
(213, 1, '2026-04-05 09:59:02', '2026-04-05 09:59:02', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 09:59:02', '2026-04-05 09:59:02', '', 10, 'https://mrarif.me/drsarah/?p=213', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(214, 1, '2026-04-05 10:02:50', '2026-04-05 10:02:50', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:02:50', '2026-04-05 10:02:50', '', 10, 'https://mrarif.me/drsarah/?p=214', 0, 'revision', '', 0),
(215, 1, '2026-04-05 10:02:50', '2026-04-05 10:02:50', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:02:50', '2026-04-05 10:02:50', '', 10, 'https://mrarif.me/drsarah/?p=215', 0, 'revision', '', 0),
(216, 1, '2026-04-05 10:02:50', '2026-04-05 10:02:50', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:02:50', '2026-04-05 10:02:50', '', 10, 'https://mrarif.me/drsarah/?p=216', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(217, 1, '2026-04-05 10:03:36', '2026-04-05 10:03:36', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:03:36', '2026-04-05 10:03:36', '', 10, 'https://mrarif.me/drsarah/?p=217', 0, 'revision', '', 0),
(218, 1, '2026-04-05 10:03:36', '2026-04-05 10:03:36', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:03:36', '2026-04-05 10:03:36', '', 10, 'https://mrarif.me/drsarah/?p=218', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(219, 1, '2026-04-05 10:03:37', '2026-04-05 10:03:37', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:03:37', '2026-04-05 10:03:37', '', 10, 'https://mrarif.me/drsarah/?p=219', 0, 'revision', '', 0),
(220, 1, '2026-04-05 10:05:15', '2026-04-05 10:05:15', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:05:15', '2026-04-05 10:05:15', '', 10, 'https://mrarif.me/drsarah/?p=220', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(221, 1, '2026-04-05 10:05:15', '2026-04-05 10:05:15', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:05:15', '2026-04-05 10:05:15', '', 10, 'https://mrarif.me/drsarah/?p=221', 0, 'revision', '', 0),
(222, 1, '2026-04-05 10:05:15', '2026-04-05 10:05:15', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Hollywood smile					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:05:15', '2026-04-05 10:05:15', '', 10, 'https://mrarif.me/drsarah/?p=222', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(223, 1, '2026-04-05 10:06:28', '2026-04-05 10:06:28', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Hollywood smile					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:06:28', '2026-04-05 10:06:28', '', 10, 'https://mrarif.me/drsarah/?p=223', 0, 'revision', '', 0),
(224, 1, '2026-04-05 10:06:29', '2026-04-05 10:06:29', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Hollywood smile					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:06:29', '2026-04-05 10:06:29', '', 10, 'https://mrarif.me/drsarah/?p=224', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(225, 1, '2026-04-05 10:06:29', '2026-04-05 10:06:29', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Fixed Prosthesis</h6>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:06:29', '2026-04-05 10:06:29', '', 10, 'https://mrarif.me/drsarah/?p=225', 0, 'revision', '', 0),
(226, 1, '2026-04-05 10:12:08', '2026-04-05 10:12:08', '', 'dental-crown_8946301', '', 'inherit', 'open', 'closed', '', 'dental-crown_8946301', '', '', '2026-04-05 10:12:08', '2026-04-05 10:12:08', '', 10, 'https://mrarif.me/drsarah/wp-content/uploads/2026/04/dental-crown_8946301.svg', 0, 'attachment', 'image/svg+xml', 0),
(227, 1, '2026-04-05 10:12:20', '2026-04-05 10:12:20', '', 'veneers_12488995', '', 'inherit', 'open', 'closed', '', 'veneers_12488995', '', '', '2026-04-05 10:12:20', '2026-04-05 10:12:20', '', 10, 'https://mrarif.me/drsarah/wp-content/uploads/2026/04/veneers_12488995.svg', 0, 'attachment', 'image/svg+xml', 0),
(228, 1, '2026-04-05 10:12:32', '2026-04-05 10:12:32', '', 'mold_2398547', '', 'inherit', 'open', 'closed', '', 'mold_2398547', '', '', '2026-04-05 10:12:32', '2026-04-05 10:12:32', '', 10, 'https://mrarif.me/drsarah/wp-content/uploads/2026/04/mold_2398547.svg', 0, 'attachment', 'image/svg+xml', 0),
(229, 1, '2026-04-05 10:12:56', '2026-04-05 10:12:56', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Fixed Prosthesis</h6>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:12:56', '2026-04-05 10:12:56', '', 10, 'https://mrarif.me/drsarah/?p=229', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(230, 1, '2026-04-05 10:12:56', '2026-04-05 10:12:56', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Fixed Prosthesis</h6>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:12:56', '2026-04-05 10:12:56', '', 10, 'https://mrarif.me/drsarah/?p=230', 0, 'revision', '', 0),
(231, 1, '2026-04-05 10:12:56', '2026-04-05 10:12:56', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Fixed Prosthesis</h6>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:12:56', '2026-04-05 10:12:56', '', 10, 'https://mrarif.me/drsarah/?p=231', 0, 'revision', '', 0),
(232, 1, '2026-04-05 10:16:43', '2026-04-05 10:16:43', '', 'teeth_17541147', '', 'inherit', 'open', 'closed', '', 'teeth_17541147', '', '', '2026-04-05 10:16:43', '2026-04-05 10:16:43', '', 10, 'https://mrarif.me/drsarah/wp-content/uploads/2026/04/teeth_17541147.svg', 0, 'attachment', 'image/svg+xml', 0),
(233, 1, '2026-04-05 10:16:58', '2026-04-05 10:16:58', '', 'bridge_6200449', '', 'inherit', 'open', 'closed', '', 'bridge_6200449', '', '', '2026-04-05 10:16:58', '2026-04-05 10:16:58', '', 10, 'https://mrarif.me/drsarah/wp-content/uploads/2026/04/bridge_6200449.svg', 0, 'attachment', 'image/svg+xml', 0),
(234, 1, '2026-04-05 10:17:14', '2026-04-05 10:17:14', '', 'malocclusion_12489207', '', 'inherit', 'open', 'closed', '', 'malocclusion_12489207', '', '', '2026-04-05 10:17:14', '2026-04-05 10:17:14', '', 10, 'https://mrarif.me/drsarah/wp-content/uploads/2026/04/malocclusion_12489207.svg', 0, 'attachment', 'image/svg+xml', 0),
(235, 1, '2026-04-05 10:17:27', '2026-04-05 10:17:27', '', 'syringe_5285617', '', 'inherit', 'open', 'closed', '', 'syringe_5285617', '', '', '2026-04-05 10:17:27', '2026-04-05 10:17:27', '', 10, 'https://mrarif.me/drsarah/wp-content/uploads/2026/04/syringe_5285617.svg', 0, 'attachment', 'image/svg+xml', 0),
(236, 1, '2026-04-05 10:17:39', '2026-04-05 10:17:39', '', 'smile_13635121', '', 'inherit', 'open', 'closed', '', 'smile_13635121', '', '', '2026-04-05 10:17:39', '2026-04-05 10:17:39', '', 10, 'https://mrarif.me/drsarah/wp-content/uploads/2026/04/smile_13635121.svg', 0, 'attachment', 'image/svg+xml', 0),
(237, 1, '2026-04-05 10:17:51', '2026-04-05 10:17:51', '', 'smile_13497292', '', 'inherit', 'open', 'closed', '', 'smile_13497292', '', '', '2026-04-05 10:17:51', '2026-04-05 10:17:51', '', 10, 'https://mrarif.me/drsarah/wp-content/uploads/2026/04/smile_13497292.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(238, 1, '2026-04-05 10:17:56', '2026-04-05 10:17:56', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Fixed Prosthesis</h6>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:17:56', '2026-04-05 10:17:56', '', 10, 'https://mrarif.me/drsarah/?p=238', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(239, 1, '2026-04-05 10:17:56', '2026-04-05 10:17:56', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Fixed Prosthesis</h6>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:17:56', '2026-04-05 10:17:56', '', 10, 'https://mrarif.me/drsarah/?p=239', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(244, 1, '2026-04-05 10:21:53', '2026-04-05 10:21:53', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m4.45 24.68 5 2 2 5a1.5 1.5 0 0 0 2.79 0l2-5 5-2a1.5 1.5 0 0 0 0-2.79l-5-2-2-5a1.51 1.51 0 0 0 -1.4-.95 1.49 1.49 0 0 0 -1.39 1l-2 5-5 2a1.5 1.5 0 0 0 0 2.79zm6.71-2.21a1.47 1.47 0 0 0 .84-.85l.82-2.07.82 2.08a1.51 1.51 0 0 0 .84.84l2.07.82-2.07.81a1.52 1.52 0 0 0 -.84.85l-.82 2.05-.82-2a1.49 1.49 0 0 0 -.84-.85l-2.07-.81zm84.39 52.85-5-2-2-5a1.5 1.5 0 0 0 -2.79 0l-2 5-5 2a1.5 1.5 0 0 0 0 2.79l5 2 2 5a1.51 1.51 0 0 0 1.4 1 1.49 1.49 0 0 0 1.39-1l2-5 5-2a1.5 1.5 0 0 0 0-2.79zm-6.71 2.21a1.47 1.47 0 0 0 -.84.85l-.82 2.07-.82-2.07a1.49 1.49 0 0 0 -.84-.85l-2.07-.82 2.07-.81a1.52 1.52 0 0 0 .84-.85l.82-2.05.82 2.05a1.49 1.49 0 0 0 .84.85l2.07.81zm7.51-33.37a1.51 1.51 0 0 0 -.24-1.67c-.18-.2-18.66-20.1-46.11-10-27.45-10.11-45.93 9.79-46.11 10a1.51 1.51 0 0 0 -.24 1.67c.59 1.18 14.44 28.92 31.8 33.31a17.86 17.86 0 0 0 14.55-2.47 18.18 18.18 0 0 0 10 3.08 18.75 18.75 0 0 0 4.58-.59c17.33-4.41 31.18-32.15 31.77-33.33zm-32.54 30.4a15 15 0 0 1 -12.94-2.56 1.49 1.49 0 0 0 -1.74 0 15 15 0 0 1 -12.94 2.61c-14.32-3.67-26.77-25.93-29.36-30.82 3.54-3.38 19.76-17 42.64-8.29a1.49 1.49 0 0 0 1.06 0 39.92 39.92 0 0 1 42.64 8.28c-2.57 4.86-15.02 27.15-29.36 30.78zm23.85-29.26a1.48 1.48 0 0 0 0-.47.08.08 0 0 0 0 0 1.44 1.44 0 0 0 -.17-.45 1.34 1.34 0 0 0 -.34-.37 38.34 38.34 0 0 0 -6.76-4 36.31 36.31 0 0 0 -7.43-2.5h-.08a33.84 33.84 0 0 0 -7.16-.78h-.21a36.45 36.45 0 0 0 -4.39.32h-.06a41 41 0 0 0 -9 2.3l-2.06.65-2-.75a40.78 40.78 0 0 0 -8.88-2.25 1.5 1.5 0 0 0 -.37-.05c-.56-.07-1.12-.15-1.67-.19-.85-.07-1.71-.11-2.64-.11a33.63 33.63 0 0 0 -7.13.78h-.15a34.27 34.27 0 0 0 -5 1.47 39.14 39.14 0 0 0 -9.19 5s0 0 0 0a1.43 1.43 0 0 0 -.35.38 1.38 1.38 0 0 0 -.18.46s0 0 0 .06a1.48 1.48 0 0 0 0 .47.17.17 0 0 0 0 .07 1.48 1.48 0 0 0 .16.46s0 0 0 0a94.57 94.57 0 0 0 9 13c4.4 5.31 8.6 8.93 12.57 10.8a14.74 14.74 0 0 0 4.25 1.33h.07a10.68 10.68 0 0 0 6.93-1.37 13.9 13.9 0 0 0 1.4-.88l3.18-2.25 3.18 2.26a13.08 13.08 0 0 0 1.37.86 10.72 10.72 0 0 0 5.45 1.5 11.33 11.33 0 0 0 1.52-.11h.11a15 15 0 0 0 4.19-1.3 2.36 2.36 0 0 0 .35-.18 31.25 31.25 0 0 0 7.36-5.33l.09-.08a67 67 0 0 0 7.24-8.17 99 99 0 0 0 6.65-10 .08.08 0 0 0 0 0 1.62 1.62 0 0 0 .16-.45.22.22 0 0 0 -.01-.13zm-4.34-.3a62.23 62.23 0 0 1 -9.32 3.72v-7.95a35.31 35.31 0 0 1 9.32 4.23zm-17.92-5.4h.2a30.64 30.64 0 0 1 5.4.49v9.51a76.44 76.44 0 0 1 -8.25 1.75v-11.61c.89-.08 1.77-.13 2.65-.14zm-12.4 2.4a37.72 37.72 0 0 1 6.73-1.88v11.6c-2.58.31-5.34.5-8.25.56v-9.7zm-4.52.58v9.7q-4.36-.09-8.25-.56v-11.55a39.07 39.07 0 0 1 6.77 1.83zm-11.68-2.88h.45v11.64a76.44 76.44 0 0 1 -8.25-1.75v-9.5a30.64 30.64 0 0 1 5.4-.49c.85 0 1.6.04 2.4.1zm-13.58 2c.92-.35 1.85-.66 2.78-.92v7.94a61.81 61.81 0 0 1 -9.3-3.72 35.6 35.6 0 0 1 6.52-3.31zm.62 15.21a84.68 84.68 0 0 1 -5.91-8 68 68 0 0 0 8.07 3v7.46c-.72-.8-1.44-1.6-2.16-2.47zm5.16 5.42v-9.6a81.52 81.52 0 0 0 8.25 1.67v13.18a13 13 0 0 1 -1.8-.69 27.06 27.06 0 0 1 -6.45-4.56zm16.08 3.91a8.49 8.49 0 0 1 -1.11.7 7.85 7.85 0 0 1 -3.72 1.06v-13.21c2.59.29 5.34.48 8.25.53v8.5zm9.84 0-3.42-2.42v-8.5c2.91 0 5.66-.24 8.25-.53v13.21a9.6 9.6 0 0 1 -4.83-1.8zm9.83.55a1.39 1.39 0 0 0 -.21.11s.06 0 0 0a13.48 13.48 0 0 1 -1.8.69v-13.19a81.52 81.52 0 0 0 8.26-1.67v9.61a27.65 27.65 0 0 1 -6.25 4.45zm13.7-12.74c-1.5 2-3 3.72-4.45 5.3v-7.46a69.78 69.78 0 0 0 8.06-3c-1.16 1.79-2.37 3.52-3.61 5.16z\" fill=\"rgb(0,0,0)\"></path></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Removable Prosthesis</h6>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:21:53', '2026-04-05 10:21:53', '', 10, 'https://mrarif.me/drsarah/?p=244', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(240, 1, '2026-04-05 10:17:56', '2026-04-05 10:17:56', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m4.45 24.68 5 2 2 5a1.5 1.5 0 0 0 2.79 0l2-5 5-2a1.5 1.5 0 0 0 0-2.79l-5-2-2-5a1.51 1.51 0 0 0 -1.4-.95 1.49 1.49 0 0 0 -1.39 1l-2 5-5 2a1.5 1.5 0 0 0 0 2.79zm6.71-2.21a1.47 1.47 0 0 0 .84-.85l.82-2.07.82 2.08a1.51 1.51 0 0 0 .84.84l2.07.82-2.07.81a1.52 1.52 0 0 0 -.84.85l-.82 2.05-.82-2a1.49 1.49 0 0 0 -.84-.85l-2.07-.81zm84.39 52.85-5-2-2-5a1.5 1.5 0 0 0 -2.79 0l-2 5-5 2a1.5 1.5 0 0 0 0 2.79l5 2 2 5a1.51 1.51 0 0 0 1.4 1 1.49 1.49 0 0 0 1.39-1l2-5 5-2a1.5 1.5 0 0 0 0-2.79zm-6.71 2.21a1.47 1.47 0 0 0 -.84.85l-.82 2.07-.82-2.07a1.49 1.49 0 0 0 -.84-.85l-2.07-.82 2.07-.81a1.52 1.52 0 0 0 .84-.85l.82-2.05.82 2.05a1.49 1.49 0 0 0 .84.85l2.07.81zm7.51-33.37a1.51 1.51 0 0 0 -.24-1.67c-.18-.2-18.66-20.1-46.11-10-27.45-10.11-45.93 9.79-46.11 10a1.51 1.51 0 0 0 -.24 1.67c.59 1.18 14.44 28.92 31.8 33.31a17.86 17.86 0 0 0 14.55-2.47 18.18 18.18 0 0 0 10 3.08 18.75 18.75 0 0 0 4.58-.59c17.33-4.41 31.18-32.15 31.77-33.33zm-32.54 30.4a15 15 0 0 1 -12.94-2.56 1.49 1.49 0 0 0 -1.74 0 15 15 0 0 1 -12.94 2.61c-14.32-3.67-26.77-25.93-29.36-30.82 3.54-3.38 19.76-17 42.64-8.29a1.49 1.49 0 0 0 1.06 0 39.92 39.92 0 0 1 42.64 8.28c-2.57 4.86-15.02 27.15-29.36 30.78zm23.85-29.26a1.48 1.48 0 0 0 0-.47.08.08 0 0 0 0 0 1.44 1.44 0 0 0 -.17-.45 1.34 1.34 0 0 0 -.34-.37 38.34 38.34 0 0 0 -6.76-4 36.31 36.31 0 0 0 -7.43-2.5h-.08a33.84 33.84 0 0 0 -7.16-.78h-.21a36.45 36.45 0 0 0 -4.39.32h-.06a41 41 0 0 0 -9 2.3l-2.06.65-2-.75a40.78 40.78 0 0 0 -8.88-2.25 1.5 1.5 0 0 0 -.37-.05c-.56-.07-1.12-.15-1.67-.19-.85-.07-1.71-.11-2.64-.11a33.63 33.63 0 0 0 -7.13.78h-.15a34.27 34.27 0 0 0 -5 1.47 39.14 39.14 0 0 0 -9.19 5s0 0 0 0a1.43 1.43 0 0 0 -.35.38 1.38 1.38 0 0 0 -.18.46s0 0 0 .06a1.48 1.48 0 0 0 0 .47.17.17 0 0 0 0 .07 1.48 1.48 0 0 0 .16.46s0 0 0 0a94.57 94.57 0 0 0 9 13c4.4 5.31 8.6 8.93 12.57 10.8a14.74 14.74 0 0 0 4.25 1.33h.07a10.68 10.68 0 0 0 6.93-1.37 13.9 13.9 0 0 0 1.4-.88l3.18-2.25 3.18 2.26a13.08 13.08 0 0 0 1.37.86 10.72 10.72 0 0 0 5.45 1.5 11.33 11.33 0 0 0 1.52-.11h.11a15 15 0 0 0 4.19-1.3 2.36 2.36 0 0 0 .35-.18 31.25 31.25 0 0 0 7.36-5.33l.09-.08a67 67 0 0 0 7.24-8.17 99 99 0 0 0 6.65-10 .08.08 0 0 0 0 0 1.62 1.62 0 0 0 .16-.45.22.22 0 0 0 -.01-.13zm-4.34-.3a62.23 62.23 0 0 1 -9.32 3.72v-7.95a35.31 35.31 0 0 1 9.32 4.23zm-17.92-5.4h.2a30.64 30.64 0 0 1 5.4.49v9.51a76.44 76.44 0 0 1 -8.25 1.75v-11.61c.89-.08 1.77-.13 2.65-.14zm-12.4 2.4a37.72 37.72 0 0 1 6.73-1.88v11.6c-2.58.31-5.34.5-8.25.56v-9.7zm-4.52.58v9.7q-4.36-.09-8.25-.56v-11.55a39.07 39.07 0 0 1 6.77 1.83zm-11.68-2.88h.45v11.64a76.44 76.44 0 0 1 -8.25-1.75v-9.5a30.64 30.64 0 0 1 5.4-.49c.85 0 1.6.04 2.4.1zm-13.58 2c.92-.35 1.85-.66 2.78-.92v7.94a61.81 61.81 0 0 1 -9.3-3.72 35.6 35.6 0 0 1 6.52-3.31zm.62 15.21a84.68 84.68 0 0 1 -5.91-8 68 68 0 0 0 8.07 3v7.46c-.72-.8-1.44-1.6-2.16-2.47zm5.16 5.42v-9.6a81.52 81.52 0 0 0 8.25 1.67v13.18a13 13 0 0 1 -1.8-.69 27.06 27.06 0 0 1 -6.45-4.56zm16.08 3.91a8.49 8.49 0 0 1 -1.11.7 7.85 7.85 0 0 1 -3.72 1.06v-13.21c2.59.29 5.34.48 8.25.53v8.5zm9.84 0-3.42-2.42v-8.5c2.91 0 5.66-.24 8.25-.53v13.21a9.6 9.6 0 0 1 -4.83-1.8zm9.83.55a1.39 1.39 0 0 0 -.21.11s.06 0 0 0a13.48 13.48 0 0 1 -1.8.69v-13.19a81.52 81.52 0 0 0 8.26-1.67v9.61a27.65 27.65 0 0 1 -6.25 4.45zm13.7-12.74c-1.5 2-3 3.72-4.45 5.3v-7.46a69.78 69.78 0 0 0 8.06-3c-1.16 1.79-2.37 3.52-3.61 5.16z\" fill=\"rgb(0,0,0)\"></path></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Fixed Prosthesis</h6>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:17:56', '2026-04-05 10:17:56', '', 10, 'https://mrarif.me/drsarah/?p=240', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(245, 1, '2026-04-05 10:22:17', '2026-04-05 10:22:17', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m4.45 24.68 5 2 2 5a1.5 1.5 0 0 0 2.79 0l2-5 5-2a1.5 1.5 0 0 0 0-2.79l-5-2-2-5a1.51 1.51 0 0 0 -1.4-.95 1.49 1.49 0 0 0 -1.39 1l-2 5-5 2a1.5 1.5 0 0 0 0 2.79zm6.71-2.21a1.47 1.47 0 0 0 .84-.85l.82-2.07.82 2.08a1.51 1.51 0 0 0 .84.84l2.07.82-2.07.81a1.52 1.52 0 0 0 -.84.85l-.82 2.05-.82-2a1.49 1.49 0 0 0 -.84-.85l-2.07-.81zm84.39 52.85-5-2-2-5a1.5 1.5 0 0 0 -2.79 0l-2 5-5 2a1.5 1.5 0 0 0 0 2.79l5 2 2 5a1.51 1.51 0 0 0 1.4 1 1.49 1.49 0 0 0 1.39-1l2-5 5-2a1.5 1.5 0 0 0 0-2.79zm-6.71 2.21a1.47 1.47 0 0 0 -.84.85l-.82 2.07-.82-2.07a1.49 1.49 0 0 0 -.84-.85l-2.07-.82 2.07-.81a1.52 1.52 0 0 0 .84-.85l.82-2.05.82 2.05a1.49 1.49 0 0 0 .84.85l2.07.81zm7.51-33.37a1.51 1.51 0 0 0 -.24-1.67c-.18-.2-18.66-20.1-46.11-10-27.45-10.11-45.93 9.79-46.11 10a1.51 1.51 0 0 0 -.24 1.67c.59 1.18 14.44 28.92 31.8 33.31a17.86 17.86 0 0 0 14.55-2.47 18.18 18.18 0 0 0 10 3.08 18.75 18.75 0 0 0 4.58-.59c17.33-4.41 31.18-32.15 31.77-33.33zm-32.54 30.4a15 15 0 0 1 -12.94-2.56 1.49 1.49 0 0 0 -1.74 0 15 15 0 0 1 -12.94 2.61c-14.32-3.67-26.77-25.93-29.36-30.82 3.54-3.38 19.76-17 42.64-8.29a1.49 1.49 0 0 0 1.06 0 39.92 39.92 0 0 1 42.64 8.28c-2.57 4.86-15.02 27.15-29.36 30.78zm23.85-29.26a1.48 1.48 0 0 0 0-.47.08.08 0 0 0 0 0 1.44 1.44 0 0 0 -.17-.45 1.34 1.34 0 0 0 -.34-.37 38.34 38.34 0 0 0 -6.76-4 36.31 36.31 0 0 0 -7.43-2.5h-.08a33.84 33.84 0 0 0 -7.16-.78h-.21a36.45 36.45 0 0 0 -4.39.32h-.06a41 41 0 0 0 -9 2.3l-2.06.65-2-.75a40.78 40.78 0 0 0 -8.88-2.25 1.5 1.5 0 0 0 -.37-.05c-.56-.07-1.12-.15-1.67-.19-.85-.07-1.71-.11-2.64-.11a33.63 33.63 0 0 0 -7.13.78h-.15a34.27 34.27 0 0 0 -5 1.47 39.14 39.14 0 0 0 -9.19 5s0 0 0 0a1.43 1.43 0 0 0 -.35.38 1.38 1.38 0 0 0 -.18.46s0 0 0 .06a1.48 1.48 0 0 0 0 .47.17.17 0 0 0 0 .07 1.48 1.48 0 0 0 .16.46s0 0 0 0a94.57 94.57 0 0 0 9 13c4.4 5.31 8.6 8.93 12.57 10.8a14.74 14.74 0 0 0 4.25 1.33h.07a10.68 10.68 0 0 0 6.93-1.37 13.9 13.9 0 0 0 1.4-.88l3.18-2.25 3.18 2.26a13.08 13.08 0 0 0 1.37.86 10.72 10.72 0 0 0 5.45 1.5 11.33 11.33 0 0 0 1.52-.11h.11a15 15 0 0 0 4.19-1.3 2.36 2.36 0 0 0 .35-.18 31.25 31.25 0 0 0 7.36-5.33l.09-.08a67 67 0 0 0 7.24-8.17 99 99 0 0 0 6.65-10 .08.08 0 0 0 0 0 1.62 1.62 0 0 0 .16-.45.22.22 0 0 0 -.01-.13zm-4.34-.3a62.23 62.23 0 0 1 -9.32 3.72v-7.95a35.31 35.31 0 0 1 9.32 4.23zm-17.92-5.4h.2a30.64 30.64 0 0 1 5.4.49v9.51a76.44 76.44 0 0 1 -8.25 1.75v-11.61c.89-.08 1.77-.13 2.65-.14zm-12.4 2.4a37.72 37.72 0 0 1 6.73-1.88v11.6c-2.58.31-5.34.5-8.25.56v-9.7zm-4.52.58v9.7q-4.36-.09-8.25-.56v-11.55a39.07 39.07 0 0 1 6.77 1.83zm-11.68-2.88h.45v11.64a76.44 76.44 0 0 1 -8.25-1.75v-9.5a30.64 30.64 0 0 1 5.4-.49c.85 0 1.6.04 2.4.1zm-13.58 2c.92-.35 1.85-.66 2.78-.92v7.94a61.81 61.81 0 0 1 -9.3-3.72 35.6 35.6 0 0 1 6.52-3.31zm.62 15.21a84.68 84.68 0 0 1 -5.91-8 68 68 0 0 0 8.07 3v7.46c-.72-.8-1.44-1.6-2.16-2.47zm5.16 5.42v-9.6a81.52 81.52 0 0 0 8.25 1.67v13.18a13 13 0 0 1 -1.8-.69 27.06 27.06 0 0 1 -6.45-4.56zm16.08 3.91a8.49 8.49 0 0 1 -1.11.7 7.85 7.85 0 0 1 -3.72 1.06v-13.21c2.59.29 5.34.48 8.25.53v8.5zm9.84 0-3.42-2.42v-8.5c2.91 0 5.66-.24 8.25-.53v13.21a9.6 9.6 0 0 1 -4.83-1.8zm9.83.55a1.39 1.39 0 0 0 -.21.11s.06 0 0 0a13.48 13.48 0 0 1 -1.8.69v-13.19a81.52 81.52 0 0 0 8.26-1.67v9.61a27.65 27.65 0 0 1 -6.25 4.45zm13.7-12.74c-1.5 2-3 3.72-4.45 5.3v-7.46a69.78 69.78 0 0 0 8.06-3c-1.16 1.79-2.37 3.52-3.61 5.16z\" fill=\"rgb(0,0,0)\"></path></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Removable Prosthesis</h6>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:22:17', '2026-04-05 10:22:17', '', 10, 'https://mrarif.me/drsarah/?p=245', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(242, 1, '2026-04-05 10:21:53', '2026-04-05 10:21:53', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m4.45 24.68 5 2 2 5a1.5 1.5 0 0 0 2.79 0l2-5 5-2a1.5 1.5 0 0 0 0-2.79l-5-2-2-5a1.51 1.51 0 0 0 -1.4-.95 1.49 1.49 0 0 0 -1.39 1l-2 5-5 2a1.5 1.5 0 0 0 0 2.79zm6.71-2.21a1.47 1.47 0 0 0 .84-.85l.82-2.07.82 2.08a1.51 1.51 0 0 0 .84.84l2.07.82-2.07.81a1.52 1.52 0 0 0 -.84.85l-.82 2.05-.82-2a1.49 1.49 0 0 0 -.84-.85l-2.07-.81zm84.39 52.85-5-2-2-5a1.5 1.5 0 0 0 -2.79 0l-2 5-5 2a1.5 1.5 0 0 0 0 2.79l5 2 2 5a1.51 1.51 0 0 0 1.4 1 1.49 1.49 0 0 0 1.39-1l2-5 5-2a1.5 1.5 0 0 0 0-2.79zm-6.71 2.21a1.47 1.47 0 0 0 -.84.85l-.82 2.07-.82-2.07a1.49 1.49 0 0 0 -.84-.85l-2.07-.82 2.07-.81a1.52 1.52 0 0 0 .84-.85l.82-2.05.82 2.05a1.49 1.49 0 0 0 .84.85l2.07.81zm7.51-33.37a1.51 1.51 0 0 0 -.24-1.67c-.18-.2-18.66-20.1-46.11-10-27.45-10.11-45.93 9.79-46.11 10a1.51 1.51 0 0 0 -.24 1.67c.59 1.18 14.44 28.92 31.8 33.31a17.86 17.86 0 0 0 14.55-2.47 18.18 18.18 0 0 0 10 3.08 18.75 18.75 0 0 0 4.58-.59c17.33-4.41 31.18-32.15 31.77-33.33zm-32.54 30.4a15 15 0 0 1 -12.94-2.56 1.49 1.49 0 0 0 -1.74 0 15 15 0 0 1 -12.94 2.61c-14.32-3.67-26.77-25.93-29.36-30.82 3.54-3.38 19.76-17 42.64-8.29a1.49 1.49 0 0 0 1.06 0 39.92 39.92 0 0 1 42.64 8.28c-2.57 4.86-15.02 27.15-29.36 30.78zm23.85-29.26a1.48 1.48 0 0 0 0-.47.08.08 0 0 0 0 0 1.44 1.44 0 0 0 -.17-.45 1.34 1.34 0 0 0 -.34-.37 38.34 38.34 0 0 0 -6.76-4 36.31 36.31 0 0 0 -7.43-2.5h-.08a33.84 33.84 0 0 0 -7.16-.78h-.21a36.45 36.45 0 0 0 -4.39.32h-.06a41 41 0 0 0 -9 2.3l-2.06.65-2-.75a40.78 40.78 0 0 0 -8.88-2.25 1.5 1.5 0 0 0 -.37-.05c-.56-.07-1.12-.15-1.67-.19-.85-.07-1.71-.11-2.64-.11a33.63 33.63 0 0 0 -7.13.78h-.15a34.27 34.27 0 0 0 -5 1.47 39.14 39.14 0 0 0 -9.19 5s0 0 0 0a1.43 1.43 0 0 0 -.35.38 1.38 1.38 0 0 0 -.18.46s0 0 0 .06a1.48 1.48 0 0 0 0 .47.17.17 0 0 0 0 .07 1.48 1.48 0 0 0 .16.46s0 0 0 0a94.57 94.57 0 0 0 9 13c4.4 5.31 8.6 8.93 12.57 10.8a14.74 14.74 0 0 0 4.25 1.33h.07a10.68 10.68 0 0 0 6.93-1.37 13.9 13.9 0 0 0 1.4-.88l3.18-2.25 3.18 2.26a13.08 13.08 0 0 0 1.37.86 10.72 10.72 0 0 0 5.45 1.5 11.33 11.33 0 0 0 1.52-.11h.11a15 15 0 0 0 4.19-1.3 2.36 2.36 0 0 0 .35-.18 31.25 31.25 0 0 0 7.36-5.33l.09-.08a67 67 0 0 0 7.24-8.17 99 99 0 0 0 6.65-10 .08.08 0 0 0 0 0 1.62 1.62 0 0 0 .16-.45.22.22 0 0 0 -.01-.13zm-4.34-.3a62.23 62.23 0 0 1 -9.32 3.72v-7.95a35.31 35.31 0 0 1 9.32 4.23zm-17.92-5.4h.2a30.64 30.64 0 0 1 5.4.49v9.51a76.44 76.44 0 0 1 -8.25 1.75v-11.61c.89-.08 1.77-.13 2.65-.14zm-12.4 2.4a37.72 37.72 0 0 1 6.73-1.88v11.6c-2.58.31-5.34.5-8.25.56v-9.7zm-4.52.58v9.7q-4.36-.09-8.25-.56v-11.55a39.07 39.07 0 0 1 6.77 1.83zm-11.68-2.88h.45v11.64a76.44 76.44 0 0 1 -8.25-1.75v-9.5a30.64 30.64 0 0 1 5.4-.49c.85 0 1.6.04 2.4.1zm-13.58 2c.92-.35 1.85-.66 2.78-.92v7.94a61.81 61.81 0 0 1 -9.3-3.72 35.6 35.6 0 0 1 6.52-3.31zm.62 15.21a84.68 84.68 0 0 1 -5.91-8 68 68 0 0 0 8.07 3v7.46c-.72-.8-1.44-1.6-2.16-2.47zm5.16 5.42v-9.6a81.52 81.52 0 0 0 8.25 1.67v13.18a13 13 0 0 1 -1.8-.69 27.06 27.06 0 0 1 -6.45-4.56zm16.08 3.91a8.49 8.49 0 0 1 -1.11.7 7.85 7.85 0 0 1 -3.72 1.06v-13.21c2.59.29 5.34.48 8.25.53v8.5zm9.84 0-3.42-2.42v-8.5c2.91 0 5.66-.24 8.25-.53v13.21a9.6 9.6 0 0 1 -4.83-1.8zm9.83.55a1.39 1.39 0 0 0 -.21.11s.06 0 0 0a13.48 13.48 0 0 1 -1.8.69v-13.19a81.52 81.52 0 0 0 8.26-1.67v9.61a27.65 27.65 0 0 1 -6.25 4.45zm13.7-12.74c-1.5 2-3 3.72-4.45 5.3v-7.46a69.78 69.78 0 0 0 8.06-3c-1.16 1.79-2.37 3.52-3.61 5.16z\" fill=\"rgb(0,0,0)\"></path></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Fixed Prosthesis</h6>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:21:53', '2026-04-05 10:21:53', '', 10, 'https://mrarif.me/drsarah/?p=242', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(243, 1, '2026-04-05 10:21:53', '2026-04-05 10:21:53', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m4.45 24.68 5 2 2 5a1.5 1.5 0 0 0 2.79 0l2-5 5-2a1.5 1.5 0 0 0 0-2.79l-5-2-2-5a1.51 1.51 0 0 0 -1.4-.95 1.49 1.49 0 0 0 -1.39 1l-2 5-5 2a1.5 1.5 0 0 0 0 2.79zm6.71-2.21a1.47 1.47 0 0 0 .84-.85l.82-2.07.82 2.08a1.51 1.51 0 0 0 .84.84l2.07.82-2.07.81a1.52 1.52 0 0 0 -.84.85l-.82 2.05-.82-2a1.49 1.49 0 0 0 -.84-.85l-2.07-.81zm84.39 52.85-5-2-2-5a1.5 1.5 0 0 0 -2.79 0l-2 5-5 2a1.5 1.5 0 0 0 0 2.79l5 2 2 5a1.51 1.51 0 0 0 1.4 1 1.49 1.49 0 0 0 1.39-1l2-5 5-2a1.5 1.5 0 0 0 0-2.79zm-6.71 2.21a1.47 1.47 0 0 0 -.84.85l-.82 2.07-.82-2.07a1.49 1.49 0 0 0 -.84-.85l-2.07-.82 2.07-.81a1.52 1.52 0 0 0 .84-.85l.82-2.05.82 2.05a1.49 1.49 0 0 0 .84.85l2.07.81zm7.51-33.37a1.51 1.51 0 0 0 -.24-1.67c-.18-.2-18.66-20.1-46.11-10-27.45-10.11-45.93 9.79-46.11 10a1.51 1.51 0 0 0 -.24 1.67c.59 1.18 14.44 28.92 31.8 33.31a17.86 17.86 0 0 0 14.55-2.47 18.18 18.18 0 0 0 10 3.08 18.75 18.75 0 0 0 4.58-.59c17.33-4.41 31.18-32.15 31.77-33.33zm-32.54 30.4a15 15 0 0 1 -12.94-2.56 1.49 1.49 0 0 0 -1.74 0 15 15 0 0 1 -12.94 2.61c-14.32-3.67-26.77-25.93-29.36-30.82 3.54-3.38 19.76-17 42.64-8.29a1.49 1.49 0 0 0 1.06 0 39.92 39.92 0 0 1 42.64 8.28c-2.57 4.86-15.02 27.15-29.36 30.78zm23.85-29.26a1.48 1.48 0 0 0 0-.47.08.08 0 0 0 0 0 1.44 1.44 0 0 0 -.17-.45 1.34 1.34 0 0 0 -.34-.37 38.34 38.34 0 0 0 -6.76-4 36.31 36.31 0 0 0 -7.43-2.5h-.08a33.84 33.84 0 0 0 -7.16-.78h-.21a36.45 36.45 0 0 0 -4.39.32h-.06a41 41 0 0 0 -9 2.3l-2.06.65-2-.75a40.78 40.78 0 0 0 -8.88-2.25 1.5 1.5 0 0 0 -.37-.05c-.56-.07-1.12-.15-1.67-.19-.85-.07-1.71-.11-2.64-.11a33.63 33.63 0 0 0 -7.13.78h-.15a34.27 34.27 0 0 0 -5 1.47 39.14 39.14 0 0 0 -9.19 5s0 0 0 0a1.43 1.43 0 0 0 -.35.38 1.38 1.38 0 0 0 -.18.46s0 0 0 .06a1.48 1.48 0 0 0 0 .47.17.17 0 0 0 0 .07 1.48 1.48 0 0 0 .16.46s0 0 0 0a94.57 94.57 0 0 0 9 13c4.4 5.31 8.6 8.93 12.57 10.8a14.74 14.74 0 0 0 4.25 1.33h.07a10.68 10.68 0 0 0 6.93-1.37 13.9 13.9 0 0 0 1.4-.88l3.18-2.25 3.18 2.26a13.08 13.08 0 0 0 1.37.86 10.72 10.72 0 0 0 5.45 1.5 11.33 11.33 0 0 0 1.52-.11h.11a15 15 0 0 0 4.19-1.3 2.36 2.36 0 0 0 .35-.18 31.25 31.25 0 0 0 7.36-5.33l.09-.08a67 67 0 0 0 7.24-8.17 99 99 0 0 0 6.65-10 .08.08 0 0 0 0 0 1.62 1.62 0 0 0 .16-.45.22.22 0 0 0 -.01-.13zm-4.34-.3a62.23 62.23 0 0 1 -9.32 3.72v-7.95a35.31 35.31 0 0 1 9.32 4.23zm-17.92-5.4h.2a30.64 30.64 0 0 1 5.4.49v9.51a76.44 76.44 0 0 1 -8.25 1.75v-11.61c.89-.08 1.77-.13 2.65-.14zm-12.4 2.4a37.72 37.72 0 0 1 6.73-1.88v11.6c-2.58.31-5.34.5-8.25.56v-9.7zm-4.52.58v9.7q-4.36-.09-8.25-.56v-11.55a39.07 39.07 0 0 1 6.77 1.83zm-11.68-2.88h.45v11.64a76.44 76.44 0 0 1 -8.25-1.75v-9.5a30.64 30.64 0 0 1 5.4-.49c.85 0 1.6.04 2.4.1zm-13.58 2c.92-.35 1.85-.66 2.78-.92v7.94a61.81 61.81 0 0 1 -9.3-3.72 35.6 35.6 0 0 1 6.52-3.31zm.62 15.21a84.68 84.68 0 0 1 -5.91-8 68 68 0 0 0 8.07 3v7.46c-.72-.8-1.44-1.6-2.16-2.47zm5.16 5.42v-9.6a81.52 81.52 0 0 0 8.25 1.67v13.18a13 13 0 0 1 -1.8-.69 27.06 27.06 0 0 1 -6.45-4.56zm16.08 3.91a8.49 8.49 0 0 1 -1.11.7 7.85 7.85 0 0 1 -3.72 1.06v-13.21c2.59.29 5.34.48 8.25.53v8.5zm9.84 0-3.42-2.42v-8.5c2.91 0 5.66-.24 8.25-.53v13.21a9.6 9.6 0 0 1 -4.83-1.8zm9.83.55a1.39 1.39 0 0 0 -.21.11s.06 0 0 0a13.48 13.48 0 0 1 -1.8.69v-13.19a81.52 81.52 0 0 0 8.26-1.67v9.61a27.65 27.65 0 0 1 -6.25 4.45zm13.7-12.74c-1.5 2-3 3.72-4.45 5.3v-7.46a69.78 69.78 0 0 0 8.06-3c-1.16 1.79-2.37 3.52-3.61 5.16z\" fill=\"rgb(0,0,0)\"></path></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Fixed Prosthesis</h6>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:21:53', '2026-04-05 10:21:53', '', 10, 'https://mrarif.me/drsarah/?p=243', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(246, 1, '2026-04-05 10:22:17', '2026-04-05 10:22:17', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m4.45 24.68 5 2 2 5a1.5 1.5 0 0 0 2.79 0l2-5 5-2a1.5 1.5 0 0 0 0-2.79l-5-2-2-5a1.51 1.51 0 0 0 -1.4-.95 1.49 1.49 0 0 0 -1.39 1l-2 5-5 2a1.5 1.5 0 0 0 0 2.79zm6.71-2.21a1.47 1.47 0 0 0 .84-.85l.82-2.07.82 2.08a1.51 1.51 0 0 0 .84.84l2.07.82-2.07.81a1.52 1.52 0 0 0 -.84.85l-.82 2.05-.82-2a1.49 1.49 0 0 0 -.84-.85l-2.07-.81zm84.39 52.85-5-2-2-5a1.5 1.5 0 0 0 -2.79 0l-2 5-5 2a1.5 1.5 0 0 0 0 2.79l5 2 2 5a1.51 1.51 0 0 0 1.4 1 1.49 1.49 0 0 0 1.39-1l2-5 5-2a1.5 1.5 0 0 0 0-2.79zm-6.71 2.21a1.47 1.47 0 0 0 -.84.85l-.82 2.07-.82-2.07a1.49 1.49 0 0 0 -.84-.85l-2.07-.82 2.07-.81a1.52 1.52 0 0 0 .84-.85l.82-2.05.82 2.05a1.49 1.49 0 0 0 .84.85l2.07.81zm7.51-33.37a1.51 1.51 0 0 0 -.24-1.67c-.18-.2-18.66-20.1-46.11-10-27.45-10.11-45.93 9.79-46.11 10a1.51 1.51 0 0 0 -.24 1.67c.59 1.18 14.44 28.92 31.8 33.31a17.86 17.86 0 0 0 14.55-2.47 18.18 18.18 0 0 0 10 3.08 18.75 18.75 0 0 0 4.58-.59c17.33-4.41 31.18-32.15 31.77-33.33zm-32.54 30.4a15 15 0 0 1 -12.94-2.56 1.49 1.49 0 0 0 -1.74 0 15 15 0 0 1 -12.94 2.61c-14.32-3.67-26.77-25.93-29.36-30.82 3.54-3.38 19.76-17 42.64-8.29a1.49 1.49 0 0 0 1.06 0 39.92 39.92 0 0 1 42.64 8.28c-2.57 4.86-15.02 27.15-29.36 30.78zm23.85-29.26a1.48 1.48 0 0 0 0-.47.08.08 0 0 0 0 0 1.44 1.44 0 0 0 -.17-.45 1.34 1.34 0 0 0 -.34-.37 38.34 38.34 0 0 0 -6.76-4 36.31 36.31 0 0 0 -7.43-2.5h-.08a33.84 33.84 0 0 0 -7.16-.78h-.21a36.45 36.45 0 0 0 -4.39.32h-.06a41 41 0 0 0 -9 2.3l-2.06.65-2-.75a40.78 40.78 0 0 0 -8.88-2.25 1.5 1.5 0 0 0 -.37-.05c-.56-.07-1.12-.15-1.67-.19-.85-.07-1.71-.11-2.64-.11a33.63 33.63 0 0 0 -7.13.78h-.15a34.27 34.27 0 0 0 -5 1.47 39.14 39.14 0 0 0 -9.19 5s0 0 0 0a1.43 1.43 0 0 0 -.35.38 1.38 1.38 0 0 0 -.18.46s0 0 0 .06a1.48 1.48 0 0 0 0 .47.17.17 0 0 0 0 .07 1.48 1.48 0 0 0 .16.46s0 0 0 0a94.57 94.57 0 0 0 9 13c4.4 5.31 8.6 8.93 12.57 10.8a14.74 14.74 0 0 0 4.25 1.33h.07a10.68 10.68 0 0 0 6.93-1.37 13.9 13.9 0 0 0 1.4-.88l3.18-2.25 3.18 2.26a13.08 13.08 0 0 0 1.37.86 10.72 10.72 0 0 0 5.45 1.5 11.33 11.33 0 0 0 1.52-.11h.11a15 15 0 0 0 4.19-1.3 2.36 2.36 0 0 0 .35-.18 31.25 31.25 0 0 0 7.36-5.33l.09-.08a67 67 0 0 0 7.24-8.17 99 99 0 0 0 6.65-10 .08.08 0 0 0 0 0 1.62 1.62 0 0 0 .16-.45.22.22 0 0 0 -.01-.13zm-4.34-.3a62.23 62.23 0 0 1 -9.32 3.72v-7.95a35.31 35.31 0 0 1 9.32 4.23zm-17.92-5.4h.2a30.64 30.64 0 0 1 5.4.49v9.51a76.44 76.44 0 0 1 -8.25 1.75v-11.61c.89-.08 1.77-.13 2.65-.14zm-12.4 2.4a37.72 37.72 0 0 1 6.73-1.88v11.6c-2.58.31-5.34.5-8.25.56v-9.7zm-4.52.58v9.7q-4.36-.09-8.25-.56v-11.55a39.07 39.07 0 0 1 6.77 1.83zm-11.68-2.88h.45v11.64a76.44 76.44 0 0 1 -8.25-1.75v-9.5a30.64 30.64 0 0 1 5.4-.49c.85 0 1.6.04 2.4.1zm-13.58 2c.92-.35 1.85-.66 2.78-.92v7.94a61.81 61.81 0 0 1 -9.3-3.72 35.6 35.6 0 0 1 6.52-3.31zm.62 15.21a84.68 84.68 0 0 1 -5.91-8 68 68 0 0 0 8.07 3v7.46c-.72-.8-1.44-1.6-2.16-2.47zm5.16 5.42v-9.6a81.52 81.52 0 0 0 8.25 1.67v13.18a13 13 0 0 1 -1.8-.69 27.06 27.06 0 0 1 -6.45-4.56zm16.08 3.91a8.49 8.49 0 0 1 -1.11.7 7.85 7.85 0 0 1 -3.72 1.06v-13.21c2.59.29 5.34.48 8.25.53v8.5zm9.84 0-3.42-2.42v-8.5c2.91 0 5.66-.24 8.25-.53v13.21a9.6 9.6 0 0 1 -4.83-1.8zm9.83.55a1.39 1.39 0 0 0 -.21.11s.06 0 0 0a13.48 13.48 0 0 1 -1.8.69v-13.19a81.52 81.52 0 0 0 8.26-1.67v9.61a27.65 27.65 0 0 1 -6.25 4.45zm13.7-12.74c-1.5 2-3 3.72-4.45 5.3v-7.46a69.78 69.78 0 0 0 8.06-3c-1.16 1.79-2.37 3.52-3.61 5.16z\" fill=\"rgb(0,0,0)\"></path></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Removable Prosthesis</h6>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:22:17', '2026-04-05 10:22:17', '', 10, 'https://mrarif.me/drsarah/?p=246', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(247, 1, '2026-04-05 10:22:17', '2026-04-05 10:22:17', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m4.45 24.68 5 2 2 5a1.5 1.5 0 0 0 2.79 0l2-5 5-2a1.5 1.5 0 0 0 0-2.79l-5-2-2-5a1.51 1.51 0 0 0 -1.4-.95 1.49 1.49 0 0 0 -1.39 1l-2 5-5 2a1.5 1.5 0 0 0 0 2.79zm6.71-2.21a1.47 1.47 0 0 0 .84-.85l.82-2.07.82 2.08a1.51 1.51 0 0 0 .84.84l2.07.82-2.07.81a1.52 1.52 0 0 0 -.84.85l-.82 2.05-.82-2a1.49 1.49 0 0 0 -.84-.85l-2.07-.81zm84.39 52.85-5-2-2-5a1.5 1.5 0 0 0 -2.79 0l-2 5-5 2a1.5 1.5 0 0 0 0 2.79l5 2 2 5a1.51 1.51 0 0 0 1.4 1 1.49 1.49 0 0 0 1.39-1l2-5 5-2a1.5 1.5 0 0 0 0-2.79zm-6.71 2.21a1.47 1.47 0 0 0 -.84.85l-.82 2.07-.82-2.07a1.49 1.49 0 0 0 -.84-.85l-2.07-.82 2.07-.81a1.52 1.52 0 0 0 .84-.85l.82-2.05.82 2.05a1.49 1.49 0 0 0 .84.85l2.07.81zm7.51-33.37a1.51 1.51 0 0 0 -.24-1.67c-.18-.2-18.66-20.1-46.11-10-27.45-10.11-45.93 9.79-46.11 10a1.51 1.51 0 0 0 -.24 1.67c.59 1.18 14.44 28.92 31.8 33.31a17.86 17.86 0 0 0 14.55-2.47 18.18 18.18 0 0 0 10 3.08 18.75 18.75 0 0 0 4.58-.59c17.33-4.41 31.18-32.15 31.77-33.33zm-32.54 30.4a15 15 0 0 1 -12.94-2.56 1.49 1.49 0 0 0 -1.74 0 15 15 0 0 1 -12.94 2.61c-14.32-3.67-26.77-25.93-29.36-30.82 3.54-3.38 19.76-17 42.64-8.29a1.49 1.49 0 0 0 1.06 0 39.92 39.92 0 0 1 42.64 8.28c-2.57 4.86-15.02 27.15-29.36 30.78zm23.85-29.26a1.48 1.48 0 0 0 0-.47.08.08 0 0 0 0 0 1.44 1.44 0 0 0 -.17-.45 1.34 1.34 0 0 0 -.34-.37 38.34 38.34 0 0 0 -6.76-4 36.31 36.31 0 0 0 -7.43-2.5h-.08a33.84 33.84 0 0 0 -7.16-.78h-.21a36.45 36.45 0 0 0 -4.39.32h-.06a41 41 0 0 0 -9 2.3l-2.06.65-2-.75a40.78 40.78 0 0 0 -8.88-2.25 1.5 1.5 0 0 0 -.37-.05c-.56-.07-1.12-.15-1.67-.19-.85-.07-1.71-.11-2.64-.11a33.63 33.63 0 0 0 -7.13.78h-.15a34.27 34.27 0 0 0 -5 1.47 39.14 39.14 0 0 0 -9.19 5s0 0 0 0a1.43 1.43 0 0 0 -.35.38 1.38 1.38 0 0 0 -.18.46s0 0 0 .06a1.48 1.48 0 0 0 0 .47.17.17 0 0 0 0 .07 1.48 1.48 0 0 0 .16.46s0 0 0 0a94.57 94.57 0 0 0 9 13c4.4 5.31 8.6 8.93 12.57 10.8a14.74 14.74 0 0 0 4.25 1.33h.07a10.68 10.68 0 0 0 6.93-1.37 13.9 13.9 0 0 0 1.4-.88l3.18-2.25 3.18 2.26a13.08 13.08 0 0 0 1.37.86 10.72 10.72 0 0 0 5.45 1.5 11.33 11.33 0 0 0 1.52-.11h.11a15 15 0 0 0 4.19-1.3 2.36 2.36 0 0 0 .35-.18 31.25 31.25 0 0 0 7.36-5.33l.09-.08a67 67 0 0 0 7.24-8.17 99 99 0 0 0 6.65-10 .08.08 0 0 0 0 0 1.62 1.62 0 0 0 .16-.45.22.22 0 0 0 -.01-.13zm-4.34-.3a62.23 62.23 0 0 1 -9.32 3.72v-7.95a35.31 35.31 0 0 1 9.32 4.23zm-17.92-5.4h.2a30.64 30.64 0 0 1 5.4.49v9.51a76.44 76.44 0 0 1 -8.25 1.75v-11.61c.89-.08 1.77-.13 2.65-.14zm-12.4 2.4a37.72 37.72 0 0 1 6.73-1.88v11.6c-2.58.31-5.34.5-8.25.56v-9.7zm-4.52.58v9.7q-4.36-.09-8.25-.56v-11.55a39.07 39.07 0 0 1 6.77 1.83zm-11.68-2.88h.45v11.64a76.44 76.44 0 0 1 -8.25-1.75v-9.5a30.64 30.64 0 0 1 5.4-.49c.85 0 1.6.04 2.4.1zm-13.58 2c.92-.35 1.85-.66 2.78-.92v7.94a61.81 61.81 0 0 1 -9.3-3.72 35.6 35.6 0 0 1 6.52-3.31zm.62 15.21a84.68 84.68 0 0 1 -5.91-8 68 68 0 0 0 8.07 3v7.46c-.72-.8-1.44-1.6-2.16-2.47zm5.16 5.42v-9.6a81.52 81.52 0 0 0 8.25 1.67v13.18a13 13 0 0 1 -1.8-.69 27.06 27.06 0 0 1 -6.45-4.56zm16.08 3.91a8.49 8.49 0 0 1 -1.11.7 7.85 7.85 0 0 1 -3.72 1.06v-13.21c2.59.29 5.34.48 8.25.53v8.5zm9.84 0-3.42-2.42v-8.5c2.91 0 5.66-.24 8.25-.53v13.21a9.6 9.6 0 0 1 -4.83-1.8zm9.83.55a1.39 1.39 0 0 0 -.21.11s.06 0 0 0a13.48 13.48 0 0 1 -1.8.69v-13.19a81.52 81.52 0 0 0 8.26-1.67v9.61a27.65 27.65 0 0 1 -6.25 4.45zm13.7-12.74c-1.5 2-3 3.72-4.45 5.3v-7.46a69.78 69.78 0 0 0 8.06-3c-1.16 1.79-2.37 3.52-3.61 5.16z\" fill=\"rgb(0,0,0)\"></path></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Removable Prosthesis</h6>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:22:17', '2026-04-05 10:22:17', '', 10, 'https://mrarif.me/drsarah/?p=247', 0, 'revision', '', 0),
(248, 1, '2026-04-05 10:23:12', '2026-04-05 10:23:12', '', 'dental-care_2581605', '', 'inherit', 'open', 'closed', '', 'dental-care_2581605', '', '', '2026-04-05 10:23:12', '2026-04-05 10:23:12', '', 10, 'https://mrarif.me/drsarah/wp-content/uploads/2026/04/dental-care_2581605.svg', 0, 'attachment', 'image/svg+xml', 0),
(249, 1, '2026-04-05 10:23:29', '2026-04-05 10:23:29', '', 'braces_7335250', '', 'inherit', 'open', 'closed', '', 'braces_7335250', '', '', '2026-04-05 10:23:29', '2026-04-05 10:23:29', '', 10, 'https://mrarif.me/drsarah/wp-content/uploads/2026/04/braces_7335250.svg', 0, 'attachment', 'image/svg+xml', 0),
(250, 1, '2026-04-05 10:23:42', '2026-04-05 10:23:42', '', 'dental-bridge_18038707', '', 'inherit', 'open', 'closed', '', 'dental-bridge_18038707', '', '', '2026-04-05 10:23:42', '2026-04-05 10:23:42', '', 10, 'https://mrarif.me/drsarah/wp-content/uploads/2026/04/dental-bridge_18038707.svg', 0, 'attachment', 'image/svg+xml', 0),
(251, 1, '2026-04-05 10:23:56', '2026-04-05 10:23:56', '', 'bridge_13935535', '', 'inherit', 'open', 'closed', '', 'bridge_13935535', '', '', '2026-04-05 10:23:56', '2026-04-05 10:23:56', '', 10, 'https://mrarif.me/drsarah/wp-content/uploads/2026/04/bridge_13935535.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(252, 1, '2026-04-05 10:24:14', '2026-04-05 10:24:14', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m4.45 24.68 5 2 2 5a1.5 1.5 0 0 0 2.79 0l2-5 5-2a1.5 1.5 0 0 0 0-2.79l-5-2-2-5a1.51 1.51 0 0 0 -1.4-.95 1.49 1.49 0 0 0 -1.39 1l-2 5-5 2a1.5 1.5 0 0 0 0 2.79zm6.71-2.21a1.47 1.47 0 0 0 .84-.85l.82-2.07.82 2.08a1.51 1.51 0 0 0 .84.84l2.07.82-2.07.81a1.52 1.52 0 0 0 -.84.85l-.82 2.05-.82-2a1.49 1.49 0 0 0 -.84-.85l-2.07-.81zm84.39 52.85-5-2-2-5a1.5 1.5 0 0 0 -2.79 0l-2 5-5 2a1.5 1.5 0 0 0 0 2.79l5 2 2 5a1.51 1.51 0 0 0 1.4 1 1.49 1.49 0 0 0 1.39-1l2-5 5-2a1.5 1.5 0 0 0 0-2.79zm-6.71 2.21a1.47 1.47 0 0 0 -.84.85l-.82 2.07-.82-2.07a1.49 1.49 0 0 0 -.84-.85l-2.07-.82 2.07-.81a1.52 1.52 0 0 0 .84-.85l.82-2.05.82 2.05a1.49 1.49 0 0 0 .84.85l2.07.81zm7.51-33.37a1.51 1.51 0 0 0 -.24-1.67c-.18-.2-18.66-20.1-46.11-10-27.45-10.11-45.93 9.79-46.11 10a1.51 1.51 0 0 0 -.24 1.67c.59 1.18 14.44 28.92 31.8 33.31a17.86 17.86 0 0 0 14.55-2.47 18.18 18.18 0 0 0 10 3.08 18.75 18.75 0 0 0 4.58-.59c17.33-4.41 31.18-32.15 31.77-33.33zm-32.54 30.4a15 15 0 0 1 -12.94-2.56 1.49 1.49 0 0 0 -1.74 0 15 15 0 0 1 -12.94 2.61c-14.32-3.67-26.77-25.93-29.36-30.82 3.54-3.38 19.76-17 42.64-8.29a1.49 1.49 0 0 0 1.06 0 39.92 39.92 0 0 1 42.64 8.28c-2.57 4.86-15.02 27.15-29.36 30.78zm23.85-29.26a1.48 1.48 0 0 0 0-.47.08.08 0 0 0 0 0 1.44 1.44 0 0 0 -.17-.45 1.34 1.34 0 0 0 -.34-.37 38.34 38.34 0 0 0 -6.76-4 36.31 36.31 0 0 0 -7.43-2.5h-.08a33.84 33.84 0 0 0 -7.16-.78h-.21a36.45 36.45 0 0 0 -4.39.32h-.06a41 41 0 0 0 -9 2.3l-2.06.65-2-.75a40.78 40.78 0 0 0 -8.88-2.25 1.5 1.5 0 0 0 -.37-.05c-.56-.07-1.12-.15-1.67-.19-.85-.07-1.71-.11-2.64-.11a33.63 33.63 0 0 0 -7.13.78h-.15a34.27 34.27 0 0 0 -5 1.47 39.14 39.14 0 0 0 -9.19 5s0 0 0 0a1.43 1.43 0 0 0 -.35.38 1.38 1.38 0 0 0 -.18.46s0 0 0 .06a1.48 1.48 0 0 0 0 .47.17.17 0 0 0 0 .07 1.48 1.48 0 0 0 .16.46s0 0 0 0a94.57 94.57 0 0 0 9 13c4.4 5.31 8.6 8.93 12.57 10.8a14.74 14.74 0 0 0 4.25 1.33h.07a10.68 10.68 0 0 0 6.93-1.37 13.9 13.9 0 0 0 1.4-.88l3.18-2.25 3.18 2.26a13.08 13.08 0 0 0 1.37.86 10.72 10.72 0 0 0 5.45 1.5 11.33 11.33 0 0 0 1.52-.11h.11a15 15 0 0 0 4.19-1.3 2.36 2.36 0 0 0 .35-.18 31.25 31.25 0 0 0 7.36-5.33l.09-.08a67 67 0 0 0 7.24-8.17 99 99 0 0 0 6.65-10 .08.08 0 0 0 0 0 1.62 1.62 0 0 0 .16-.45.22.22 0 0 0 -.01-.13zm-4.34-.3a62.23 62.23 0 0 1 -9.32 3.72v-7.95a35.31 35.31 0 0 1 9.32 4.23zm-17.92-5.4h.2a30.64 30.64 0 0 1 5.4.49v9.51a76.44 76.44 0 0 1 -8.25 1.75v-11.61c.89-.08 1.77-.13 2.65-.14zm-12.4 2.4a37.72 37.72 0 0 1 6.73-1.88v11.6c-2.58.31-5.34.5-8.25.56v-9.7zm-4.52.58v9.7q-4.36-.09-8.25-.56v-11.55a39.07 39.07 0 0 1 6.77 1.83zm-11.68-2.88h.45v11.64a76.44 76.44 0 0 1 -8.25-1.75v-9.5a30.64 30.64 0 0 1 5.4-.49c.85 0 1.6.04 2.4.1zm-13.58 2c.92-.35 1.85-.66 2.78-.92v7.94a61.81 61.81 0 0 1 -9.3-3.72 35.6 35.6 0 0 1 6.52-3.31zm.62 15.21a84.68 84.68 0 0 1 -5.91-8 68 68 0 0 0 8.07 3v7.46c-.72-.8-1.44-1.6-2.16-2.47zm5.16 5.42v-9.6a81.52 81.52 0 0 0 8.25 1.67v13.18a13 13 0 0 1 -1.8-.69 27.06 27.06 0 0 1 -6.45-4.56zm16.08 3.91a8.49 8.49 0 0 1 -1.11.7 7.85 7.85 0 0 1 -3.72 1.06v-13.21c2.59.29 5.34.48 8.25.53v8.5zm9.84 0-3.42-2.42v-8.5c2.91 0 5.66-.24 8.25-.53v13.21a9.6 9.6 0 0 1 -4.83-1.8zm9.83.55a1.39 1.39 0 0 0 -.21.11s.06 0 0 0a13.48 13.48 0 0 1 -1.8.69v-13.19a81.52 81.52 0 0 0 8.26-1.67v9.61a27.65 27.65 0 0 1 -6.25 4.45zm13.7-12.74c-1.5 2-3 3.72-4.45 5.3v-7.46a69.78 69.78 0 0 0 8.06-3c-1.16 1.79-2.37 3.52-3.61 5.16z\" fill=\"rgb(0,0,0)\"></path></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Removable Prosthesis</h6>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:24:14', '2026-04-05 10:24:14', '', 10, 'https://mrarif.me/drsarah/?p=252', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(253, 1, '2026-04-05 10:24:14', '2026-04-05 10:24:14', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m4.45 24.68 5 2 2 5a1.5 1.5 0 0 0 2.79 0l2-5 5-2a1.5 1.5 0 0 0 0-2.79l-5-2-2-5a1.51 1.51 0 0 0 -1.4-.95 1.49 1.49 0 0 0 -1.39 1l-2 5-5 2a1.5 1.5 0 0 0 0 2.79zm6.71-2.21a1.47 1.47 0 0 0 .84-.85l.82-2.07.82 2.08a1.51 1.51 0 0 0 .84.84l2.07.82-2.07.81a1.52 1.52 0 0 0 -.84.85l-.82 2.05-.82-2a1.49 1.49 0 0 0 -.84-.85l-2.07-.81zm84.39 52.85-5-2-2-5a1.5 1.5 0 0 0 -2.79 0l-2 5-5 2a1.5 1.5 0 0 0 0 2.79l5 2 2 5a1.51 1.51 0 0 0 1.4 1 1.49 1.49 0 0 0 1.39-1l2-5 5-2a1.5 1.5 0 0 0 0-2.79zm-6.71 2.21a1.47 1.47 0 0 0 -.84.85l-.82 2.07-.82-2.07a1.49 1.49 0 0 0 -.84-.85l-2.07-.82 2.07-.81a1.52 1.52 0 0 0 .84-.85l.82-2.05.82 2.05a1.49 1.49 0 0 0 .84.85l2.07.81zm7.51-33.37a1.51 1.51 0 0 0 -.24-1.67c-.18-.2-18.66-20.1-46.11-10-27.45-10.11-45.93 9.79-46.11 10a1.51 1.51 0 0 0 -.24 1.67c.59 1.18 14.44 28.92 31.8 33.31a17.86 17.86 0 0 0 14.55-2.47 18.18 18.18 0 0 0 10 3.08 18.75 18.75 0 0 0 4.58-.59c17.33-4.41 31.18-32.15 31.77-33.33zm-32.54 30.4a15 15 0 0 1 -12.94-2.56 1.49 1.49 0 0 0 -1.74 0 15 15 0 0 1 -12.94 2.61c-14.32-3.67-26.77-25.93-29.36-30.82 3.54-3.38 19.76-17 42.64-8.29a1.49 1.49 0 0 0 1.06 0 39.92 39.92 0 0 1 42.64 8.28c-2.57 4.86-15.02 27.15-29.36 30.78zm23.85-29.26a1.48 1.48 0 0 0 0-.47.08.08 0 0 0 0 0 1.44 1.44 0 0 0 -.17-.45 1.34 1.34 0 0 0 -.34-.37 38.34 38.34 0 0 0 -6.76-4 36.31 36.31 0 0 0 -7.43-2.5h-.08a33.84 33.84 0 0 0 -7.16-.78h-.21a36.45 36.45 0 0 0 -4.39.32h-.06a41 41 0 0 0 -9 2.3l-2.06.65-2-.75a40.78 40.78 0 0 0 -8.88-2.25 1.5 1.5 0 0 0 -.37-.05c-.56-.07-1.12-.15-1.67-.19-.85-.07-1.71-.11-2.64-.11a33.63 33.63 0 0 0 -7.13.78h-.15a34.27 34.27 0 0 0 -5 1.47 39.14 39.14 0 0 0 -9.19 5s0 0 0 0a1.43 1.43 0 0 0 -.35.38 1.38 1.38 0 0 0 -.18.46s0 0 0 .06a1.48 1.48 0 0 0 0 .47.17.17 0 0 0 0 .07 1.48 1.48 0 0 0 .16.46s0 0 0 0a94.57 94.57 0 0 0 9 13c4.4 5.31 8.6 8.93 12.57 10.8a14.74 14.74 0 0 0 4.25 1.33h.07a10.68 10.68 0 0 0 6.93-1.37 13.9 13.9 0 0 0 1.4-.88l3.18-2.25 3.18 2.26a13.08 13.08 0 0 0 1.37.86 10.72 10.72 0 0 0 5.45 1.5 11.33 11.33 0 0 0 1.52-.11h.11a15 15 0 0 0 4.19-1.3 2.36 2.36 0 0 0 .35-.18 31.25 31.25 0 0 0 7.36-5.33l.09-.08a67 67 0 0 0 7.24-8.17 99 99 0 0 0 6.65-10 .08.08 0 0 0 0 0 1.62 1.62 0 0 0 .16-.45.22.22 0 0 0 -.01-.13zm-4.34-.3a62.23 62.23 0 0 1 -9.32 3.72v-7.95a35.31 35.31 0 0 1 9.32 4.23zm-17.92-5.4h.2a30.64 30.64 0 0 1 5.4.49v9.51a76.44 76.44 0 0 1 -8.25 1.75v-11.61c.89-.08 1.77-.13 2.65-.14zm-12.4 2.4a37.72 37.72 0 0 1 6.73-1.88v11.6c-2.58.31-5.34.5-8.25.56v-9.7zm-4.52.58v9.7q-4.36-.09-8.25-.56v-11.55a39.07 39.07 0 0 1 6.77 1.83zm-11.68-2.88h.45v11.64a76.44 76.44 0 0 1 -8.25-1.75v-9.5a30.64 30.64 0 0 1 5.4-.49c.85 0 1.6.04 2.4.1zm-13.58 2c.92-.35 1.85-.66 2.78-.92v7.94a61.81 61.81 0 0 1 -9.3-3.72 35.6 35.6 0 0 1 6.52-3.31zm.62 15.21a84.68 84.68 0 0 1 -5.91-8 68 68 0 0 0 8.07 3v7.46c-.72-.8-1.44-1.6-2.16-2.47zm5.16 5.42v-9.6a81.52 81.52 0 0 0 8.25 1.67v13.18a13 13 0 0 1 -1.8-.69 27.06 27.06 0 0 1 -6.45-4.56zm16.08 3.91a8.49 8.49 0 0 1 -1.11.7 7.85 7.85 0 0 1 -3.72 1.06v-13.21c2.59.29 5.34.48 8.25.53v8.5zm9.84 0-3.42-2.42v-8.5c2.91 0 5.66-.24 8.25-.53v13.21a9.6 9.6 0 0 1 -4.83-1.8zm9.83.55a1.39 1.39 0 0 0 -.21.11s.06 0 0 0a13.48 13.48 0 0 1 -1.8.69v-13.19a81.52 81.52 0 0 0 8.26-1.67v9.61a27.65 27.65 0 0 1 -6.25 4.45zm13.7-12.74c-1.5 2-3 3.72-4.45 5.3v-7.46a69.78 69.78 0 0 0 8.06-3c-1.16 1.79-2.37 3.52-3.61 5.16z\" fill=\"rgb(0,0,0)\"></path></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Removable Prosthesis</h6>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:24:14', '2026-04-05 10:24:14', '', 10, 'https://mrarif.me/drsarah/?p=253', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(438, 1, '2026-04-07 11:27:19', '2026-04-07 11:27:19', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h1>Dr. Sarah Alabdullah</h1>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h4>Fixed Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h4>Removable Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M21.32153,69.56442a23.37174,23.37174,0,0,0-9.24.09,4.44636,4.44636,0,0,0-3.48,3.76,49.235,49.235,0,0,0,.11,13.34,4.46823,4.46823,0,0,0,2.52991,3.37,13.40178,13.40178,0,0,0,8.13013,1.17,1.41747,1.41747,0,0,1-.04-.2,60.35016,60.35016,0,0,1-.15-16.39014A10.80932,10.80932,0,0,1,21.32153,69.56442Z\"></path><path d=\"M66.28467,76.58529a55.58765,55.58765,0,0,0,.16064,15.33588,4.97633,4.97633,0,0,0,2.75,3.67188,14.58249,14.58249,0,0,0,13.05457-.0506A5.05254,5.05254,0,0,0,85.123,91.71865a55.69556,55.69556,0,0,0,.12878-15.13336,5.04,5.04,0,0,0-3.95459-4.26447,26.6315,26.6315,0,0,0-11.058,0A5.0398,5.0398,0,0,0,66.28467,76.58529Z\"></path><path d=\"M25.13574,75.50631a54.01893,54.01893,0,0,0,.1499,14.86987,4.82949,4.82949,0,0,0,2.66,3.56006,13.72507,13.72507,0,0,0,8.68005,1.24,6.01527,6.01527,0,0,0,4.92993-5.91071V76.85281a5.95076,5.95076,0,0,0-5.4469-5.97784,25.939,25.939,0,0,0-7.123.49127A4.92716,4.92716,0,0,0,25.13574,75.50631Z\"></path><path d=\"M90.3916,95.04446a14.41659,14.41659,0,0,0,9.56995-1.15,4.89591,4.89591,0,0,0,2.77991-3.71008,53.76773,53.76773,0,0,0,.13013-14.66992,4.89423,4.89423,0,0,0-3.83008-4.14,25.78941,25.78941,0,0,0-9.59-.21,10.95734,10.95734,0,0,1,1.75,4.61,62.20134,62.20134,0,0,1-.15,16.86A10.7274,10.7274,0,0,1,90.3916,95.04446Z\"></path><path d=\"M108.67151,91.10452a1.28692,1.28692,0,0,1-.03992.18994,13.40091,13.40091,0,0,0,8.12988-1.17,4.49037,4.49037,0,0,0,2.53-3.37,49.23988,49.23988,0,0,0,.11011-13.34,4.44666,4.44666,0,0,0-3.48-3.76,23.3724,23.3724,0,0,0-9.24011-.09,10.80932,10.80932,0,0,1,2.14,5.14A60.4323,60.4323,0,0,1,108.67151,91.10452Z\"></path><path d=\"M126.42456,98.2a42.34688,42.34688,0,0,0-2.88354-5.416,10.92132,10.92132,0,0,1-4.05029,3.23389,20.68914,20.68914,0,0,1-8.65234,1.96973,18.69958,18.69958,0,0,1-4.7373-.615,11.38535,11.38535,0,0,1-3.4209,2.42554,22.01776,22.01776,0,0,1-9.22852,2.10547,20.10376,20.10376,0,0,1-7.01025-1.28479,11.53128,11.53128,0,0,1-1.4751.82874,22.42428,22.42428,0,0,1-9.417,2.15625,20.88279,20.88279,0,0,1-9.19629-2.165l-.001-.001A11.54485,11.54485,0,0,1,64.001,99.91531a11.54666,11.54666,0,0,1-2.35107,1.52246l-.001.001a20.8787,20.8787,0,0,1-9.19531,2.165,22.44613,22.44613,0,0,1-9.4209-2.15723,11.5312,11.5312,0,0,1-1.47266-.82739,20.11541,20.11541,0,0,1-7.01074,1.28442,21.998,21.998,0,0,1-9.22314-2.10352,11.39616,11.39616,0,0,1-3.42456-2.42773,18.70785,18.70785,0,0,1-4.74341.61621,20.61324,20.61324,0,0,1-8.62744-1.96191,10.97713,10.97713,0,0,1-4.07007-3.24512A42.33219,42.33219,0,0,0,1.57544,98.2a6.68961,6.68961,0,0,0,5.604,9.36768,40.95427,40.95427,0,0,1,14.45288,3.50513c8.61462,4.13489,22.35864,8.67139,35.49939,5.50061a29.22367,29.22367,0,0,1,13.73657,0c13.14075,3.17078,26.88489-1.36572,35.49939-5.50061a40.95489,40.95489,0,0,1,14.45288-3.50513A6.68961,6.68961,0,0,0,126.42456,98.2Z\"></path><path d=\"M39.53845,43.34554a3.02093,3.02093,0,0,0,2.7428,1.70978H64.119a3.02078,3.02078,0,0,0,2.74451-1.71307c.07227-.15466.14209-.31152.209-.469a15.2541,15.2541,0,0,0,1.17212-6.37488c-.08-3.0575-.74036-7.3988-3.72852-8.51172a10.45,10.45,0,0,0-6.81177-.1344,15.28619,15.28619,0,0,1-9.00464,0,10.44927,10.44927,0,0,0-6.81152.1344c-2.98547,1.11182-3.6499,5.44592-3.73267,8.50293a15.21331,15.21331,0,0,0,1.17725,6.39661C39.39868,43.04043,39.46729,43.19406,39.53845,43.34554Zm8.306-10.9115a1.37717,1.37717,0,0,1,1.72876-.91638,12.34805,12.34805,0,0,0,7.25757,0,1.38359,1.38359,0,1,1,.8125,2.6452,15.14388,15.14388,0,0,1-8.88257,0A1.38224,1.38224,0,0,1,47.84448,32.434Z\"></path><path d=\"M61.5542,53.95834a2.26541,2.26541,0,1,0,0-4.53082H44.84546a2.26541,2.26541,0,0,0,0,4.53082h3.74585v3.37213l-1.31323.23151a1.88822,1.88822,0,0,0-1.59326,1.91772,1.8288,1.8288,0,0,0,2.14868,1.70593l.75781-.13361v2.44531l-1.31323.23157a1.8882,1.8882,0,0,0-1.59326,1.91766A1.82847,1.82847,0,0,0,47.8335,67.3525l.75781-.13361v1.36377a2.4434,2.4434,0,0,0,.61646,1.62244l3.08057,3.46954a1.22161,1.22161,0,0,0,1.82715,0l3.08069-3.46954a2.44329,2.44329,0,0,0,.61633-1.62244V65.5931l1.291-.2276a1.90024,1.90024,0,0,0,1.60059-2.04224,1.83181,1.83181,0,0,0-2.13794-1.58459l-.75366.13287V59.42623l1.291-.22766a1.90012,1.90012,0,0,0,1.60034-2.0434,1.83247,1.83247,0,0,0-2.1377-1.58344l-.75366.13287V53.95834Z\"></path><path d=\"M88.46362,53.21761a2,2,0,0,0,2.95764,0L102.89551,40.6152a2,2,0,0,0-1.47888-3.34644H95.69238V16.11288a5.75,5.75,0,0,0-11.5,0V37.26876H78.46814a2,2,0,0,0-1.47888,3.34644Z\"></path><path d=\"M15.52112,53.21761a2,2,0,0,0,2.95764,0L29.95313,40.6152a2,2,0,0,0-1.479-3.34644H22.75V16.11288a5.75,5.75,0,0,0-11.5,0V37.26876H5.52563A2,2,0,0,0,4.04688,40.6152Z\"></path></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-07 11:27:19', '2026-04-07 11:27:19', '', 10, 'https://mrarif.me/drsarah/?p=438', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(369, 1, '2026-04-07 06:10:50', '2026-04-07 06:10:50', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h1>Dr. Sarah Alabdullah</h1>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n							<h6>Removable Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-07 06:10:50', '2026-04-07 06:10:50', '', 10, 'https://mrarif.me/drsarah/?p=369', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(254, 1, '2026-04-05 10:24:15', '2026-04-05 10:24:15', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Removable Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:24:15', '2026-04-05 10:24:15', '', 10, 'https://mrarif.me/drsarah/?p=254', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(255, 1, '2026-04-05 10:25:04', '2026-04-05 10:25:04', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Removable Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:25:04', '2026-04-05 10:25:04', '', 10, 'https://mrarif.me/drsarah/?p=255', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(256, 1, '2026-04-05 10:25:05', '2026-04-05 10:25:05', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Removable Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:25:05', '2026-04-05 10:25:05', '', 10, 'https://mrarif.me/drsarah/?p=256', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(366, 1, '2026-04-07 06:10:02', '2026-04-07 06:10:02', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h1>Dr. Sarah Alabdullah</h1>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n							<h6>Removable Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-07 06:10:02', '2026-04-07 06:10:02', '', 10, 'https://mrarif.me/drsarah/?p=366', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(257, 1, '2026-04-05 10:25:06', '2026-04-05 10:25:06', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Removable Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:25:06', '2026-04-05 10:25:06', '', 10, 'https://mrarif.me/drsarah/?p=257', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(258, 1, '2026-04-05 10:26:07', '2026-04-05 10:26:07', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Removable Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:26:07', '2026-04-05 10:26:07', '', 10, 'https://mrarif.me/drsarah/?p=258', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(259, 1, '2026-04-05 10:26:07', '2026-04-05 10:26:07', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Removable Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:26:07', '2026-04-05 10:26:07', '', 10, 'https://mrarif.me/drsarah/?p=259', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(260, 1, '2026-04-05 10:26:07', '2026-04-05 10:26:07', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Removable Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:26:07', '2026-04-05 10:26:07', '', 10, 'https://mrarif.me/drsarah/?p=260', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(380, 1, '2026-04-07 06:35:15', '2026-04-07 06:35:15', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book Appointment</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 06:35:15', '2026-04-07 06:35:15', '', 12, 'https://mrarif.me/drsarah/?p=380', 0, 'revision', '', 0),
(262, 1, '2026-04-05 10:28:11', '2026-04-05 10:28:11', '<h6>Quick link</h6>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/drsarah/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/drsarah/contact-me/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Contact Me\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/drsarah/refer-a-patient/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Refer a Patient\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n												<a role=\"button\">\n									Click here\n					</a>\n									<p>© 2026. All rights reserved.</p>', 'Elementor Footer #262', '', 'publish', 'closed', 'closed', '', 'elementor-footer-262', '', '', '2026-04-07 06:57:52', '2026-04-07 06:57:52', '', 0, 'https://mrarif.me/drsarah/?post_type=elementor_library&#038;p=262', 0, 'elementor_library', '', 0),
(263, 1, '2026-04-05 10:28:11', '2026-04-05 10:28:11', '', 'Elementor Footer #262', '', 'inherit', 'closed', 'closed', '', '262-revision-v1', '', '', '2026-04-05 10:28:11', '2026-04-05 10:28:11', '', 262, 'https://mrarif.me/drsarah/?p=263', 0, 'revision', '', 0),
(264, 1, '2026-04-05 10:31:33', '2026-04-05 10:31:33', '<h5>Quick link</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/drsarah/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/drsarah/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/drsarah/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>', 'Elementor Footer #262', '', 'inherit', 'closed', 'closed', '', '262-revision-v1', '', '', '2026-04-05 10:31:33', '2026-04-05 10:31:33', '', 262, 'https://mrarif.me/drsarah/?p=264', 0, 'revision', '', 0),
(266, 1, '2026-04-05 10:33:18', '2026-04-05 10:33:18', '<h6>Quick link</h6>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/drsarah/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/drsarah/contact-me/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Contact Me\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/drsarah/referral/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Referral\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h6>BC Perio Vancouver</h6>', 'Elementor Footer #262', '', 'inherit', 'closed', 'closed', '', '262-revision-v1', '', '', '2026-04-05 10:33:18', '2026-04-05 10:33:18', '', 262, 'https://mrarif.me/drsarah/?p=266', 0, 'revision', '', 0),
(267, 1, '2026-04-05 10:38:12', '2026-04-05 10:38:12', '<h6>Quick link</h6>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/drsarah/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/drsarah/contact-me/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Contact Me\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/drsarah/referral/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Referral\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<p>© 2026. All rights reserved.</p>', 'Elementor Footer #262', '', 'inherit', 'closed', 'closed', '', '262-revision-v1', '', '', '2026-04-05 10:38:12', '2026-04-05 10:38:12', '', 262, 'https://mrarif.me/drsarah/?p=267', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(268, 1, '2026-04-05 10:42:41', '2026-04-05 10:42:41', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Removable Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:42:41', '2026-04-05 10:42:41', '', 10, 'https://mrarif.me/drsarah/?p=268', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(269, 1, '2026-04-05 10:42:41', '2026-04-05 10:42:41', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Removable Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:42:41', '2026-04-05 10:42:41', '', 10, 'https://mrarif.me/drsarah/?p=269', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(270, 1, '2026-04-05 10:42:42', '2026-04-05 10:42:42', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Removable Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 10:42:42', '2026-04-05 10:42:42', '', 10, 'https://mrarif.me/drsarah/?p=270', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(271, 1, '2026-04-05 10:47:26', '2026-04-05 10:47:26', '', 'fav (11)', '', 'inherit', 'open', 'closed', '', 'fav-11', '', '', '2026-04-05 10:47:26', '2026-04-05 10:47:26', '', 0, 'https://mrarif.me/drsarah/wp-content/uploads/2026/04/fav-11.png', 0, 'attachment', 'image/png', 0),
(272, 1, '2026-04-05 10:47:30', '2026-04-05 10:47:30', 'https://mrarif.me/drsarah/wp-content/uploads/2026/04/cropped-fav-11.png', 'cropped-fav-11.png', '', 'inherit', 'open', 'closed', '', 'cropped-fav-11-png', '', '', '2026-04-05 10:47:30', '2026-04-05 10:47:30', '', 271, 'https://mrarif.me/drsarah/wp-content/uploads/2026/04/cropped-fav-11.png', 0, 'attachment', 'image/png', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(285, 1, '2026-04-05 11:03:49', '2026-04-05 11:03:49', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h1>Dr. Sarah Alabdullah</h1>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Removable Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 11:03:49', '2026-04-05 11:03:49', '', 10, 'https://mrarif.me/drsarah/?p=285', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(274, 1, '2026-04-05 10:59:44', '2026-04-05 10:59:44', '', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 10:59:44', '2026-04-05 10:59:44', '', 12, 'https://mrarif.me/drsarah/?p=274', 0, 'revision', '', 0),
(275, 1, '2026-04-05 10:59:44', '2026-04-05 10:59:44', '', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 10:59:44', '2026-04-05 10:59:44', '', 12, 'https://mrarif.me/drsarah/?p=275', 0, 'revision', '', 0),
(359, 1, '2026-04-07 06:00:30', '2026-04-07 06:00:30', '<h2>I Practice at Two Convenient Locations</h2>\r\n<h6>BC Perio Vancouver</h6>\r\n<ul>\r\n 	<li><a href=\"https://www.google.com/maps/dir//\'\'/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\" rel=\"noopener\">\r\n\r\n#501-777 West Broadway Vancouver, BC V5Z 4J7\r\n</a></li>\r\n 	<li><a href=\"mailto:info@bcperio.ca\" target=\"_blank\" rel=\"noopener\">\r\n\r\ninfo@bcperio.ca\r\n</a></li>\r\n 	<li><a href=\"tel:6048720222\" target=\"_blank\" rel=\"noopener\">\r\n\r\n(604) 872-0222\r\n</a></li>\r\n</ul>\r\n<h6>BC Perio Coquitlam</h6>\r\n<ul>\r\n 	<li><a href=\"https://www.google.com/maps/dir//\'\'/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\" rel=\"noopener\">\r\n\r\n#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\r\n</a></li>\r\n 	<li><a href=\"mailto:info2@bcperio.ca\" target=\"_blank\" rel=\"noopener\">\r\n\r\ninfo2@bcperio.ca\r\n</a></li>\r\n 	<li><a href=\"tel:6049368244\" target=\"_blank\" rel=\"noopener\">\r\n\r\n(604) 936-8244\r\n</a></li>\r\n</ul>\r\n<h2>Contact me</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 06:00:30', '2026-04-07 06:00:30', '', 12, 'https://mrarif.me/drsarah/?p=359', 0, 'revision', '', 0),
(360, 1, '2026-04-07 06:00:30', '2026-04-07 06:00:30', '<h2>I Practice at Two Convenient Locations</h2>\r\n<h6>BC Perio Vancouver</h6>\r\n<ul>\r\n 	<li><a href=\"https://www.google.com/maps/dir//\'\'/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\" rel=\"noopener\">\r\n\r\n#501-777 West Broadway Vancouver, BC V5Z 4J7\r\n</a></li>\r\n 	<li><a href=\"mailto:info@bcperio.ca\" target=\"_blank\" rel=\"noopener\">\r\n\r\ninfo@bcperio.ca\r\n</a></li>\r\n 	<li><a href=\"tel:6048720222\" target=\"_blank\" rel=\"noopener\">\r\n\r\n(604) 872-0222\r\n</a></li>\r\n</ul>\r\n<h6>BC Perio Coquitlam</h6>\r\n<ul>\r\n 	<li><a href=\"https://www.google.com/maps/dir//\'\'/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\" rel=\"noopener\">\r\n\r\n#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\r\n</a></li>\r\n 	<li><a href=\"mailto:info2@bcperio.ca\" target=\"_blank\" rel=\"noopener\">\r\n\r\ninfo2@bcperio.ca\r\n</a></li>\r\n 	<li><a href=\"tel:6049368244\" target=\"_blank\" rel=\"noopener\">\r\n\r\n(604) 936-8244\r\n</a></li>\r\n</ul>\r\n<h2>Contact me</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 06:00:30', '2026-04-07 06:00:30', '', 12, 'https://mrarif.me/drsarah/?p=360', 0, 'revision', '', 0),
(276, 1, '2026-04-05 10:59:44', '2026-04-05 10:59:44', '<h3>BC Perio Vancouver</h3>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h3>BC Perio Coquitlam</h3>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 10:59:44', '2026-04-05 10:59:44', '', 12, 'https://mrarif.me/drsarah/?p=276', 0, 'revision', '', 0),
(277, 1, '2026-04-05 11:00:39', '2026-04-05 11:00:39', '<h3>BC Perio Vancouver</h3>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h3>BC Perio Coquitlam</h3>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:00:39', '2026-04-05 11:00:39', '', 12, 'https://mrarif.me/drsarah/?p=277', 0, 'revision', '', 0),
(278, 1, '2026-04-05 11:00:40', '2026-04-05 11:00:40', '<h3>BC Perio Vancouver</h3>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h3>BC Perio Coquitlam</h3>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:00:40', '2026-04-05 11:00:40', '', 12, 'https://mrarif.me/drsarah/?p=278', 0, 'revision', '', 0),
(279, 1, '2026-04-05 11:00:40', '2026-04-05 11:00:40', '<h2>Offices</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:00:40', '2026-04-05 11:00:40', '', 12, 'https://mrarif.me/drsarah/?p=279', 0, 'revision', '', 0),
(280, 1, '2026-04-05 11:03:33', '2026-04-05 11:03:33', '<h2>Offices</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:03:33', '2026-04-05 11:03:33', '', 12, 'https://mrarif.me/drsarah/?p=280', 0, 'revision', '', 0),
(281, 1, '2026-04-05 11:03:34', '2026-04-05 11:03:34', '<h2>Offices</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:03:34', '2026-04-05 11:03:34', '', 12, 'https://mrarif.me/drsarah/?p=281', 0, 'revision', '', 0),
(282, 1, '2026-04-05 11:03:34', '2026-04-05 11:03:34', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:03:34', '2026-04-05 11:03:34', '', 12, 'https://mrarif.me/drsarah/?p=282', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(283, 1, '2026-04-05 11:03:48', '2026-04-05 11:03:48', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Removable Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 11:03:48', '2026-04-05 11:03:48', '', 10, 'https://mrarif.me/drsarah/?p=283', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(284, 1, '2026-04-05 11:03:48', '2026-04-05 11:03:48', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Removable Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 11:03:48', '2026-04-05 11:03:48', '', 10, 'https://mrarif.me/drsarah/?p=284', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(286, 1, '2026-04-05 11:04:34', '2026-04-05 11:04:34', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h1>Dr. Sarah Alabdullah</h1>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Removable Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 11:04:34', '2026-04-05 11:04:34', '', 10, 'https://mrarif.me/drsarah/?p=286', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(287, 1, '2026-04-05 11:04:34', '2026-04-05 11:04:34', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h1>Dr. Sarah Alabdullah</h1>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Removable Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 11:04:34', '2026-04-05 11:04:34', '', 10, 'https://mrarif.me/drsarah/?p=287', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(288, 1, '2026-04-05 11:04:35', '2026-04-05 11:04:35', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h1>Dr. Sarah Alabdullah</h1>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Removable Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-05 11:04:35', '2026-04-05 11:04:35', '', 10, 'https://mrarif.me/drsarah/?p=288', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(289, 1, '2026-04-05 11:08:23', '2026-04-05 11:08:23', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:08:23', '2026-04-05 11:08:23', '', 12, 'https://mrarif.me/drsarah/?p=289', 0, 'revision', '', 0),
(290, 1, '2026-04-05 11:08:23', '2026-04-05 11:08:23', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:08:23', '2026-04-05 11:08:23', '', 12, 'https://mrarif.me/drsarah/?p=290', 0, 'revision', '', 0),
(358, 1, '2026-04-07 05:51:20', '2026-04-07 05:51:20', '<h2>I Practice at Two Convenient Locations</h2>\r\n<h6>BC Perio Vancouver</h6>\r\n<ul>\r\n 	<li><a href=\"https://www.google.com/maps/dir//\'\'/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\" rel=\"noopener\">\r\n\r\n#501-777 West Broadway Vancouver, BC V5Z 4J7\r\n</a></li>\r\n 	<li><a href=\"mailto:info@bcperio.ca\" target=\"_blank\" rel=\"noopener\">\r\n\r\ninfo@bcperio.ca\r\n</a></li>\r\n 	<li><a href=\"tel:6048720222\" target=\"_blank\" rel=\"noopener\">\r\n\r\n(604) 872-0222\r\n</a></li>\r\n</ul>\r\n<h6>BC Perio Coquitlam</h6>\r\n<ul>\r\n 	<li><a href=\"https://www.google.com/maps/dir//\'\'/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\" rel=\"noopener\">\r\n\r\n#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\r\n</a></li>\r\n 	<li><a href=\"mailto:info2@bcperio.ca\" target=\"_blank\" rel=\"noopener\">\r\n\r\ninfo2@bcperio.ca\r\n</a></li>\r\n 	<li><a href=\"tel:6049368244\" target=\"_blank\" rel=\"noopener\">\r\n\r\n(604) 936-8244\r\n</a></li>\r\n</ul>\r\n<h2>Contact me</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 05:51:20', '2026-04-07 05:51:20', '', 12, 'https://mrarif.me/drsarah/?p=358', 0, 'revision', '', 0),
(291, 1, '2026-04-05 11:08:23', '2026-04-05 11:08:23', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:08:23', '2026-04-05 11:08:23', '', 12, 'https://mrarif.me/drsarah/?p=291', 0, 'revision', '', 0),
(292, 1, '2026-04-05 11:11:01', '2026-04-05 11:11:01', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:11:01', '2026-04-05 11:11:01', '', 12, 'https://mrarif.me/drsarah/?p=292', 0, 'revision', '', 0),
(293, 1, '2026-04-05 11:11:02', '2026-04-05 11:11:02', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:11:02', '2026-04-05 11:11:02', '', 12, 'https://mrarif.me/drsarah/?p=293', 0, 'revision', '', 0),
(294, 1, '2026-04-05 11:11:02', '2026-04-05 11:11:02', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:11:02', '2026-04-05 11:11:02', '', 12, 'https://mrarif.me/drsarah/?p=294', 0, 'revision', '', 0),
(295, 1, '2026-04-05 11:11:19', '2026-04-05 11:11:19', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:11:19', '2026-04-05 11:11:19', '', 12, 'https://mrarif.me/drsarah/?p=295', 0, 'revision', '', 0),
(296, 1, '2026-04-05 11:11:19', '2026-04-05 11:11:19', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:11:19', '2026-04-05 11:11:19', '', 12, 'https://mrarif.me/drsarah/?p=296', 0, 'revision', '', 0),
(297, 1, '2026-04-05 11:11:19', '2026-04-05 11:11:19', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:11:19', '2026-04-05 11:11:19', '', 12, 'https://mrarif.me/drsarah/?p=297', 0, 'revision', '', 0),
(298, 1, '2026-04-05 11:11:27', '2026-04-05 11:11:27', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:11:27', '2026-04-05 11:11:27', '', 12, 'https://mrarif.me/drsarah/?p=298', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(299, 1, '2026-04-05 11:11:27', '2026-04-05 11:11:27', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:11:27', '2026-04-05 11:11:27', '', 12, 'https://mrarif.me/drsarah/?p=299', 0, 'revision', '', 0),
(300, 1, '2026-04-05 11:11:28', '2026-04-05 11:11:28', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:11:28', '2026-04-05 11:11:28', '', 12, 'https://mrarif.me/drsarah/?p=300', 0, 'revision', '', 0),
(301, 1, '2026-04-05 11:12:31', '2026-04-05 11:12:31', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:12:31', '2026-04-05 11:12:31', '', 12, 'https://mrarif.me/drsarah/?p=301', 0, 'revision', '', 0),
(302, 1, '2026-04-05 11:12:31', '2026-04-05 11:12:31', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:12:31', '2026-04-05 11:12:31', '', 12, 'https://mrarif.me/drsarah/?p=302', 0, 'revision', '', 0),
(303, 1, '2026-04-05 11:12:32', '2026-04-05 11:12:32', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:12:32', '2026-04-05 11:12:32', '', 12, 'https://mrarif.me/drsarah/?p=303', 0, 'revision', '', 0),
(304, 1, '2026-04-05 11:12:43', '2026-04-05 11:12:43', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:12:43', '2026-04-05 11:12:43', '', 12, 'https://mrarif.me/drsarah/?p=304', 0, 'revision', '', 0),
(305, 1, '2026-04-05 11:12:44', '2026-04-05 11:12:44', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:12:44', '2026-04-05 11:12:44', '', 12, 'https://mrarif.me/drsarah/?p=305', 0, 'revision', '', 0),
(306, 1, '2026-04-05 11:12:44', '2026-04-05 11:12:44', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:12:44', '2026-04-05 11:12:44', '', 12, 'https://mrarif.me/drsarah/?p=306', 0, 'revision', '', 0),
(307, 1, '2026-04-05 11:12:57', '2026-04-05 11:12:57', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:12:57', '2026-04-05 11:12:57', '', 12, 'https://mrarif.me/drsarah/?p=307', 0, 'revision', '', 0),
(308, 1, '2026-04-05 11:12:57', '2026-04-05 11:12:57', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:12:57', '2026-04-05 11:12:57', '', 12, 'https://mrarif.me/drsarah/?p=308', 0, 'revision', '', 0),
(309, 1, '2026-04-05 11:12:58', '2026-04-05 11:12:58', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:12:58', '2026-04-05 11:12:58', '', 12, 'https://mrarif.me/drsarah/?p=309', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(310, 1, '2026-04-05 11:14:03', '2026-04-05 11:14:03', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:14:03', '2026-04-05 11:14:03', '', 12, 'https://mrarif.me/drsarah/?p=310', 0, 'revision', '', 0),
(311, 1, '2026-04-05 11:14:03', '2026-04-05 11:14:03', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:14:03', '2026-04-05 11:14:03', '', 12, 'https://mrarif.me/drsarah/?p=311', 0, 'revision', '', 0),
(312, 1, '2026-04-05 11:14:04', '2026-04-05 11:14:04', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:14:04', '2026-04-05 11:14:04', '', 12, 'https://mrarif.me/drsarah/?p=312', 0, 'revision', '', 0),
(313, 1, '2026-04-05 11:14:51', '2026-04-05 11:14:51', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:14:51', '2026-04-05 11:14:51', '', 12, 'https://mrarif.me/drsarah/?p=313', 0, 'revision', '', 0),
(314, 1, '2026-04-05 11:14:51', '2026-04-05 11:14:51', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:14:51', '2026-04-05 11:14:51', '', 12, 'https://mrarif.me/drsarah/?p=314', 0, 'revision', '', 0),
(315, 1, '2026-04-05 11:14:51', '2026-04-05 11:14:51', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:14:51', '2026-04-05 11:14:51', '', 12, 'https://mrarif.me/drsarah/?p=315', 0, 'revision', '', 0),
(316, 1, '2026-04-05 11:15:24', '2026-04-05 11:15:24', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:15:24', '2026-04-05 11:15:24', '', 12, 'https://mrarif.me/drsarah/?p=316', 0, 'revision', '', 0),
(317, 1, '2026-04-05 11:15:24', '2026-04-05 11:15:24', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:15:24', '2026-04-05 11:15:24', '', 12, 'https://mrarif.me/drsarah/?p=317', 0, 'revision', '', 0),
(318, 1, '2026-04-05 11:15:24', '2026-04-05 11:15:24', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:15:24', '2026-04-05 11:15:24', '', 12, 'https://mrarif.me/drsarah/?p=318', 0, 'revision', '', 0),
(319, 1, '2026-04-05 11:15:55', '2026-04-05 11:15:55', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:15:55', '2026-04-05 11:15:55', '', 12, 'https://mrarif.me/drsarah/?p=319', 0, 'revision', '', 0),
(320, 1, '2026-04-05 11:15:55', '2026-04-05 11:15:55', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:15:55', '2026-04-05 11:15:55', '', 12, 'https://mrarif.me/drsarah/?p=320', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(321, 1, '2026-04-05 11:15:56', '2026-04-05 11:15:56', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:15:56', '2026-04-05 11:15:56', '', 12, 'https://mrarif.me/drsarah/?p=321', 0, 'revision', '', 0),
(322, 1, '2026-04-05 11:18:07', '2026-04-05 11:18:07', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:18:07', '2026-04-05 11:18:07', '', 12, 'https://mrarif.me/drsarah/?p=322', 0, 'revision', '', 0),
(323, 1, '2026-04-05 11:18:07', '2026-04-05 11:18:07', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:18:07', '2026-04-05 11:18:07', '', 12, 'https://mrarif.me/drsarah/?p=323', 0, 'revision', '', 0),
(324, 1, '2026-04-05 11:18:08', '2026-04-05 11:18:08', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:18:08', '2026-04-05 11:18:08', '', 12, 'https://mrarif.me/drsarah/?p=324', 0, 'revision', '', 0),
(325, 1, '2026-04-05 11:20:07', '2026-04-05 11:20:07', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:20:07', '2026-04-05 11:20:07', '', 12, 'https://mrarif.me/drsarah/?p=325', 0, 'revision', '', 0),
(326, 1, '2026-04-05 11:20:07', '2026-04-05 11:20:07', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:20:07', '2026-04-05 11:20:07', '', 12, 'https://mrarif.me/drsarah/?p=326', 0, 'revision', '', 0),
(327, 1, '2026-04-05 11:20:08', '2026-04-05 11:20:08', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:20:08', '2026-04-05 11:20:08', '', 12, 'https://mrarif.me/drsarah/?p=327', 0, 'revision', '', 0),
(328, 1, '2026-04-05 11:55:09', '2026-04-05 11:55:09', '', 'Referral', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-05 11:55:09', '2026-04-05 11:55:09', '', 14, 'https://mrarif.me/drsarah/?p=328', 0, 'revision', '', 0),
(329, 1, '2026-04-05 11:55:10', '2026-04-05 11:55:10', '', 'Referral', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-05 11:55:10', '2026-04-05 11:55:10', '', 14, 'https://mrarif.me/drsarah/?p=329', 0, 'revision', '', 0),
(330, 1, '2026-04-05 11:55:10', '2026-04-05 11:55:10', '<h2>Refer A Patient</h2>', 'Referral', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-05 11:55:10', '2026-04-05 11:55:10', '', 14, 'https://mrarif.me/drsarah/?p=330', 0, 'revision', '', 0),
(331, 1, '2026-04-05 11:55:37', '2026-04-05 11:55:37', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:55:37', '2026-04-05 11:55:37', '', 12, 'https://mrarif.me/drsarah/?p=331', 0, 'revision', '', 0),
(332, 1, '2026-04-05 11:55:37', '2026-04-05 11:55:37', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:55:37', '2026-04-05 11:55:37', '', 12, 'https://mrarif.me/drsarah/?p=332', 0, 'revision', '', 0),
(333, 1, '2026-04-05 11:55:37', '2026-04-05 11:55:37', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Contact me </h2>', 'Contact Me', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-05 11:55:37', '2026-04-05 11:55:37', '', 12, 'https://mrarif.me/drsarah/?p=333', 0, 'revision', '', 0),
(334, 1, '2026-04-05 11:59:03', '2026-04-05 11:59:03', '<h2>Refer A Patient</h2>', 'Referral', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-05 11:59:03', '2026-04-05 11:59:03', '', 14, 'https://mrarif.me/drsarah/?p=334', 0, 'revision', '', 0),
(335, 1, '2026-04-05 11:59:03', '2026-04-05 11:59:03', '<h2>Refer A Patient</h2>', 'Referral', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-05 11:59:03', '2026-04-05 11:59:03', '', 14, 'https://mrarif.me/drsarah/?p=335', 0, 'revision', '', 0),
(336, 1, '2026-04-05 11:59:03', '2026-04-05 11:59:03', '<h2>Refer A Patient</h2>', 'Referral', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-05 11:59:03', '2026-04-05 11:59:03', '', 14, 'https://mrarif.me/drsarah/?p=336', 0, 'revision', '', 0),
(337, 1, '2026-04-05 11:59:17', '2026-04-05 11:59:17', '<h2>Refer A Patient</h2>', 'Referral', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-05 11:59:17', '2026-04-05 11:59:17', '', 14, 'https://mrarif.me/drsarah/?p=337', 0, 'revision', '', 0),
(338, 1, '2026-04-05 11:59:17', '2026-04-05 11:59:17', '<h2>Refer A Patient</h2>', 'Referral', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-05 11:59:17', '2026-04-05 11:59:17', '', 14, 'https://mrarif.me/drsarah/?p=338', 0, 'revision', '', 0),
(339, 1, '2026-04-05 11:59:18', '2026-04-05 11:59:18', '<h2>Refer A Patient</h2>', 'Referral', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-05 11:59:18', '2026-04-05 11:59:18', '', 14, 'https://mrarif.me/drsarah/?p=339', 0, 'revision', '', 0),
(340, 1, '2026-04-05 12:03:11', '2026-04-05 12:03:11', '<h2>Refer A Patient</h2>', 'Referral', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-05 12:03:11', '2026-04-05 12:03:11', '', 14, 'https://mrarif.me/drsarah/?p=340', 0, 'revision', '', 0),
(341, 1, '2026-04-05 12:03:11', '2026-04-05 12:03:11', '<h2>Refer A Patient</h2>', 'Referral', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-05 12:03:11', '2026-04-05 12:03:11', '', 14, 'https://mrarif.me/drsarah/?p=341', 0, 'revision', '', 0),
(342, 1, '2026-04-05 12:03:12', '2026-04-05 12:03:12', '<h2>Refer A Patient</h2>', 'Referral', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-05 12:03:12', '2026-04-05 12:03:12', '', 14, 'https://mrarif.me/drsarah/?p=342', 0, 'revision', '', 0),
(343, 1, '2026-04-05 12:06:41', '2026-04-05 12:06:41', '<h2>Refer A Patient</h2>', 'Referral', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-05 12:06:41', '2026-04-05 12:06:41', '', 14, 'https://mrarif.me/drsarah/?p=343', 0, 'revision', '', 0),
(344, 1, '2026-04-05 12:06:41', '2026-04-05 12:06:41', '<h2>Refer A Patient</h2>', 'Referral', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-05 12:06:41', '2026-04-05 12:06:41', '', 14, 'https://mrarif.me/drsarah/?p=344', 0, 'revision', '', 0),
(345, 1, '2026-04-05 12:06:42', '2026-04-05 12:06:42', '<h2>Refer A Patient</h2>', 'Referral', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-05 12:06:42', '2026-04-05 12:06:42', '', 14, 'https://mrarif.me/drsarah/?p=345', 0, 'revision', '', 0),
(346, 1, '2026-04-05 12:07:10', '2026-04-05 12:07:10', '<h2>Refer A Patient</h2>', 'Referral', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-05 12:07:10', '2026-04-05 12:07:10', '', 14, 'https://mrarif.me/drsarah/?p=346', 0, 'revision', '', 0),
(347, 1, '2026-04-05 12:07:10', '2026-04-05 12:07:10', '<h2>Refer A Patient</h2>', 'Referral', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-05 12:07:10', '2026-04-05 12:07:10', '', 14, 'https://mrarif.me/drsarah/?p=347', 0, 'revision', '', 0),
(348, 1, '2026-04-05 12:07:10', '2026-04-05 12:07:10', '<h2>Refer A Patient</h2>', 'Referral', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-05 12:07:10', '2026-04-05 12:07:10', '', 14, 'https://mrarif.me/drsarah/?p=348', 0, 'revision', '', 0),
(349, 1, '2026-04-05 12:08:28', '2026-04-05 12:08:28', '<h2>Refer A Patient</h2>', 'Referral', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-05 12:08:28', '2026-04-05 12:08:28', '', 14, 'https://mrarif.me/drsarah/?p=349', 0, 'revision', '', 0),
(350, 1, '2026-04-05 12:08:28', '2026-04-05 12:08:28', '<h2>Refer A Patient</h2>', 'Referral', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-05 12:08:28', '2026-04-05 12:08:28', '', 14, 'https://mrarif.me/drsarah/?p=350', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(351, 1, '2026-04-05 12:08:29', '2026-04-05 12:08:29', '<h2>Refer A Patient</h2>', 'Referral', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-05 12:08:29', '2026-04-05 12:08:29', '', 14, 'https://mrarif.me/drsarah/?p=351', 0, 'revision', '', 0),
(352, 1, '2026-04-05 12:08:52', '2026-04-05 12:08:52', '<h2>Refer A Patient</h2>', 'Referral', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-05 12:08:52', '2026-04-05 12:08:52', '', 14, 'https://mrarif.me/drsarah/?p=352', 0, 'revision', '', 0),
(353, 1, '2026-04-05 12:08:52', '2026-04-05 12:08:52', '<h2>Refer A Patient</h2>', 'Referral', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-05 12:08:52', '2026-04-05 12:08:52', '', 14, 'https://mrarif.me/drsarah/?p=353', 0, 'revision', '', 0),
(354, 1, '2026-04-05 12:08:53', '2026-04-05 12:08:53', '<h2>Refer A Patient</h2>', 'Referral', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-05 12:08:53', '2026-04-05 12:08:53', '', 14, 'https://mrarif.me/drsarah/?p=354', 0, 'revision', '', 0),
(420, 1, '2026-04-07 07:10:09', '2026-04-07 07:10:09', '<h2>Refer A Patient</h2>', 'Refer a Patient', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-07 07:10:09', '2026-04-07 07:10:09', '', 14, 'https://mrarif.me/drsarah/?p=420', 0, 'revision', '', 0),
(356, 1, '2026-04-05 12:11:28', '2026-04-05 12:11:28', '<h2>Refer A Patient</h2>', 'Refer a Patient', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-05 12:11:28', '2026-04-05 12:11:28', '', 14, 'https://mrarif.me/drsarah/?p=356', 0, 'revision', '', 0),
(357, 1, '2026-04-05 12:26:02', '2026-04-05 12:26:02', '<h6>Quick link</h6>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/drsarah/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/drsarah/contact-me/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Contact Me\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/drsarah/refer-a-patient/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Refer a Patient\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<p>© 2026. All rights reserved.</p>', 'Elementor Footer #262', '', 'inherit', 'closed', 'closed', '', '262-revision-v1', '', '', '2026-04-05 12:26:02', '2026-04-05 12:26:02', '', 262, 'https://mrarif.me/drsarah/?p=357', 0, 'revision', '', 0),
(361, 1, '2026-04-07 06:00:30', '2026-04-07 06:00:30', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book Appointment</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 06:00:30', '2026-04-07 06:00:30', '', 12, 'https://mrarif.me/drsarah/?p=361', 0, 'revision', '', 0),
(362, 1, '2026-04-07 06:02:03', '2026-04-07 06:02:03', '{\n    \"astra-settings[global-color-palette]\": {\n        \"value\": {\n            \"palette\": [\n                \"#006400\",\n                \"#d2b48c\",\n                \"#08203e\",\n                \"#656565\",\n                \"#FFFFFF\",\n                \"#f5f5dc\",\n                \"#111111\",\n                \"#D1D5DB\",\n                \"#111111\"\n            ],\n            \"flag\": false\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-04-07 06:02:03\"\n    },\n    \"astra-color-palettes\": {\n        \"value\": {\n            \"currentPalette\": \"palette_1\",\n            \"palettes\": {\n                \"palette_1\": [\n                    \"#006400\",\n                    \"#d2b48c\",\n                    \"#08203e\",\n                    \"#656565\",\n                    \"#FFFFFF\",\n                    \"#f5f5dc\",\n                    \"#111111\",\n                    \"#D1D5DB\",\n                    \"#111111\"\n                ],\n                \"palette_2\": [\n                    \"#0067FF\",\n                    \"#005EE9\",\n                    \"#0F172A\",\n                    \"#364151\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#070614\",\n                    \"#D1DAE5\",\n                    \"#222222\"\n                ],\n                \"palette_3\": [\n                    \"#6528F7\",\n                    \"#5511F8\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#F2F0FE\",\n                    \"#0D0614\",\n                    \"#D8D8F5\",\n                    \"#222222\"\n                ],\n                \"palette_4\": [\n                    \"#0085FF\",\n                    \"#0177E3\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#212A37\",\n                    \"#0F172A\",\n                    \"#4F5B62\",\n                    \"#070614\",\n                    \"#222222\"\n                ]\n            },\n            \"presets\": {\n                \"Oak\": [\n                    \"#0067FF\",\n                    \"#005EE9\",\n                    \"#0F172A\",\n                    \"#364151\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#070614\",\n                    \"#D1DAE5\",\n                    \"#222222\"\n                ],\n                \"Viola\": [\n                    \"#6528F7\",\n                    \"#5511F8\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#F2F0FE\",\n                    \"#0D0614\",\n                    \"#D8D8F5\",\n                    \"#222222\"\n                ],\n                \"Cedar\": [\n                    \"#DD183B\",\n                    \"#CC1939\",\n                    \"#0F172A\",\n                    \"#3A3A3A\",\n                    \"#FFFFFF\",\n                    \"#FFEDE6\",\n                    \"#140609\",\n                    \"#FFD1BF\",\n                    \"#222222\"\n                ],\n                \"Willow\": [\n                    \"#54B435\",\n                    \"#379237\",\n                    \"#0F172A\",\n                    \"#2F3B40\",\n                    \"#FFFFFF\",\n                    \"#EDFBE2\",\n                    \"#0C1406\",\n                    \"#D5EAD8\",\n                    \"#222222\"\n                ],\n                \"Lily\": [\n                    \"#DCA54A\",\n                    \"#D09A40\",\n                    \"#0F172A\",\n                    \"#4A4A4A\",\n                    \"#FFFFFF\",\n                    \"#FAF5E5\",\n                    \"#141004\",\n                    \"#F0E6C5\",\n                    \"#222222\"\n                ],\n                \"Rose\": [\n                    \"#FB5FAB\",\n                    \"#EA559D\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#FCEEF5\",\n                    \"#140610\",\n                    \"#FAD8E9\",\n                    \"#222222\"\n                ],\n                \"Sage\": [\n                    \"#1B9C85\",\n                    \"#178E79\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#EDF6EE\",\n                    \"#06140C\",\n                    \"#D4F3D7\",\n                    \"#222222\"\n                ],\n                \"Flare\": [\n                    \"#FD9800\",\n                    \"#E98C00\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#FEF9E1\",\n                    \"#141006\",\n                    \"#F9F0C8\",\n                    \"#222222\"\n                ],\n                \"Maple\": [\n                    \"#FF6210\",\n                    \"#F15808\",\n                    \"#1C0D0A\",\n                    \"#353535\",\n                    \"#FFFFFF\",\n                    \"#FEF1E4\",\n                    \"#140B06\",\n                    \"#E5D7D1\",\n                    \"#222222\"\n                ],\n                \"Birch\": [\n                    \"#737880\",\n                    \"#65696F\",\n                    \"#151616\",\n                    \"#393C40\",\n                    \"#FFFFFF\",\n                    \"#F6F6F6\",\n                    \"#232529\",\n                    \"#F1F0F0\",\n                    \"#222222\"\n                ],\n                \"Dark\": [\n                    \"#0085FF\",\n                    \"#0177E3\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#212A37\",\n                    \"#0F172A\",\n                    \"#4F5B62\",\n                    \"#070614\",\n                    \"#222222\"\n                ]\n            },\n            \"presetNames\": {\n                \"palette_1\": null,\n                \"palette_2\": \"Oak\",\n                \"palette_3\": \"Viola\",\n                \"palette_4\": \"Dark\"\n            },\n            \"flag\": false\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-04-07 06:02:03\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '7383d1e6-1afa-4c88-b2ba-163cf98469d7', '', '', '2026-04-07 06:02:03', '2026-04-07 06:02:03', '', 0, 'https://mrarif.me/drsarah/7383d1e6-1afa-4c88-b2ba-163cf98469d7/', 0, 'customize_changeset', '', 0),
(363, 1, '2026-04-07 06:03:37', '2026-04-07 06:03:37', '{\n    \"astra-settings[global-color-palette]\": {\n        \"value\": {\n            \"palette\": [\n                \"#0b6623\",\n                \"#d2b48c\",\n                \"#08203e\",\n                \"#656565\",\n                \"#FFFFFF\",\n                \"#f5f5dc\",\n                \"#111111\",\n                \"#D1D5DB\",\n                \"#111111\"\n            ],\n            \"flag\": true\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-04-07 06:03:37\"\n    },\n    \"astra-color-palettes\": {\n        \"value\": {\n            \"currentPalette\": \"palette_1\",\n            \"palettes\": {\n                \"palette_1\": [\n                    \"#0b6623\",\n                    \"#d2b48c\",\n                    \"#08203e\",\n                    \"#656565\",\n                    \"#FFFFFF\",\n                    \"#f5f5dc\",\n                    \"#111111\",\n                    \"#D1D5DB\",\n                    \"#111111\"\n                ],\n                \"palette_2\": [\n                    \"#0067FF\",\n                    \"#005EE9\",\n                    \"#0F172A\",\n                    \"#364151\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#070614\",\n                    \"#D1DAE5\",\n                    \"#222222\"\n                ],\n                \"palette_3\": [\n                    \"#6528F7\",\n                    \"#5511F8\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#F2F0FE\",\n                    \"#0D0614\",\n                    \"#D8D8F5\",\n                    \"#222222\"\n                ],\n                \"palette_4\": [\n                    \"#0085FF\",\n                    \"#0177E3\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#212A37\",\n                    \"#0F172A\",\n                    \"#4F5B62\",\n                    \"#070614\",\n                    \"#222222\"\n                ]\n            },\n            \"presets\": {\n                \"Oak\": [\n                    \"#0067FF\",\n                    \"#005EE9\",\n                    \"#0F172A\",\n                    \"#364151\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#070614\",\n                    \"#D1DAE5\",\n                    \"#222222\"\n                ],\n                \"Viola\": [\n                    \"#6528F7\",\n                    \"#5511F8\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#F2F0FE\",\n                    \"#0D0614\",\n                    \"#D8D8F5\",\n                    \"#222222\"\n                ],\n                \"Cedar\": [\n                    \"#DD183B\",\n                    \"#CC1939\",\n                    \"#0F172A\",\n                    \"#3A3A3A\",\n                    \"#FFFFFF\",\n                    \"#FFEDE6\",\n                    \"#140609\",\n                    \"#FFD1BF\",\n                    \"#222222\"\n                ],\n                \"Willow\": [\n                    \"#54B435\",\n                    \"#379237\",\n                    \"#0F172A\",\n                    \"#2F3B40\",\n                    \"#FFFFFF\",\n                    \"#EDFBE2\",\n                    \"#0C1406\",\n                    \"#D5EAD8\",\n                    \"#222222\"\n                ],\n                \"Lily\": [\n                    \"#DCA54A\",\n                    \"#D09A40\",\n                    \"#0F172A\",\n                    \"#4A4A4A\",\n                    \"#FFFFFF\",\n                    \"#FAF5E5\",\n                    \"#141004\",\n                    \"#F0E6C5\",\n                    \"#222222\"\n                ],\n                \"Rose\": [\n                    \"#FB5FAB\",\n                    \"#EA559D\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#FCEEF5\",\n                    \"#140610\",\n                    \"#FAD8E9\",\n                    \"#222222\"\n                ],\n                \"Sage\": [\n                    \"#1B9C85\",\n                    \"#178E79\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#EDF6EE\",\n                    \"#06140C\",\n                    \"#D4F3D7\",\n                    \"#222222\"\n                ],\n                \"Flare\": [\n                    \"#FD9800\",\n                    \"#E98C00\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#FEF9E1\",\n                    \"#141006\",\n                    \"#F9F0C8\",\n                    \"#222222\"\n                ],\n                \"Maple\": [\n                    \"#FF6210\",\n                    \"#F15808\",\n                    \"#1C0D0A\",\n                    \"#353535\",\n                    \"#FFFFFF\",\n                    \"#FEF1E4\",\n                    \"#140B06\",\n                    \"#E5D7D1\",\n                    \"#222222\"\n                ],\n                \"Birch\": [\n                    \"#737880\",\n                    \"#65696F\",\n                    \"#151616\",\n                    \"#393C40\",\n                    \"#FFFFFF\",\n                    \"#F6F6F6\",\n                    \"#232529\",\n                    \"#F1F0F0\",\n                    \"#222222\"\n                ],\n                \"Dark\": [\n                    \"#0085FF\",\n                    \"#0177E3\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#212A37\",\n                    \"#0F172A\",\n                    \"#4F5B62\",\n                    \"#070614\",\n                    \"#222222\"\n                ]\n            },\n            \"presetNames\": {\n                \"palette_1\": null,\n                \"palette_2\": \"Oak\",\n                \"palette_3\": \"Viola\",\n                \"palette_4\": \"Dark\"\n            },\n            \"flag\": true\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-04-07 06:03:37\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '7492d5b4-9696-4d44-af86-dab41b3c3b56', '', '', '2026-04-07 06:03:37', '2026-04-07 06:03:37', '', 0, 'https://mrarif.me/drsarah/7492d5b4-9696-4d44-af86-dab41b3c3b56/', 0, 'customize_changeset', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(364, 1, '2026-04-07 06:10:02', '2026-04-07 06:10:02', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h1>Dr. Sarah Alabdullah</h1>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Removable Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-07 06:10:02', '2026-04-07 06:10:02', '', 10, 'https://mrarif.me/drsarah/?p=364', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(365, 1, '2026-04-07 06:10:02', '2026-04-07 06:10:02', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h1>Dr. Sarah Alabdullah</h1>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>													<img width=\"800\" height=\"1100\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah.jpg 800w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-218x300.jpg 218w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-745x1024.jpg 745w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Dr.-Sarah-Alabdullah-768x1056.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />																<h2>Dr. Sarah Alabdullah</h2>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h5>Fixed Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Veneers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Bridges\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant crowns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant bridge\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant all-on-X\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Full mouth rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Smile makeover\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Hollywood smile\n									</li>\n						</ul>\n							<h5>Removable Prosthesis</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Complete dentures\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Removable partial denture\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\"><path d=\"m92.3744278 10.9533825c-17.5293427 5.7132702-39.7331848 21.0352192-60.3788681 47.3941746l-12.2056198-13.5040856c-1.9477062-2.0775528-5.3237267-2.0775528-7.1415873 0l-8.9594412 9.9982147c-1.6880126 1.9477043-1.5581672 4.9341888.2596931 6.7520485l27.5275745 26.3589401c2.3372402 2.2073975 5.9729557 1.5581665 7.531126-1.1686249 14.6727142-26.6186447 30.5140572-46.3553925 57.0028419-68.9487762 3.3760225-2.8566322.5193865-8.3102083-3.6357191-6.8818912z\"></path></svg>						\n										Implant retained complete or partial overdenture\n									</li>\n						</ul>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h6>Removable Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-07 06:10:02', '2026-04-07 06:10:02', '', 10, 'https://mrarif.me/drsarah/?p=365', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(367, 1, '2026-04-07 06:10:49', '2026-04-07 06:10:49', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h1>Dr. Sarah Alabdullah</h1>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n							<h6>Removable Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-07 06:10:49', '2026-04-07 06:10:49', '', 10, 'https://mrarif.me/drsarah/?p=367', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(368, 1, '2026-04-07 06:10:49', '2026-04-07 06:10:49', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h1>Dr. Sarah Alabdullah</h1>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n							<h6>Removable Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-07 06:10:49', '2026-04-07 06:10:49', '', 10, 'https://mrarif.me/drsarah/?p=368', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(370, 1, '2026-04-07 06:13:55', '2026-04-07 06:13:55', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book Appointment</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 06:13:55', '2026-04-07 06:13:55', '', 12, 'https://mrarif.me/drsarah/?p=370', 0, 'revision', '', 0),
(371, 1, '2026-04-07 06:13:55', '2026-04-07 06:13:55', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book Appointment</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 06:13:55', '2026-04-07 06:13:55', '', 12, 'https://mrarif.me/drsarah/?p=371', 0, 'revision', '', 0),
(372, 1, '2026-04-07 06:13:55', '2026-04-07 06:13:55', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book Appointment</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 06:13:55', '2026-04-07 06:13:55', '', 12, 'https://mrarif.me/drsarah/?p=372', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(373, 1, '2026-04-07 06:19:38', '2026-04-07 06:19:38', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h1>Dr. Sarah Alabdullah</h1>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n							<h6>Removable Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-07 06:19:38', '2026-04-07 06:19:38', '', 10, 'https://mrarif.me/drsarah/?p=373', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(374, 1, '2026-04-07 06:19:38', '2026-04-07 06:19:38', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h1>Dr. Sarah Alabdullah</h1>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h6>Fixed Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n							<h6>Removable Prosthesis</h6>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-07 06:19:38', '2026-04-07 06:19:38', '', 10, 'https://mrarif.me/drsarah/?p=374', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(375, 1, '2026-04-07 06:19:38', '2026-04-07 06:19:38', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h1>Dr. Sarah Alabdullah</h1>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h4>Fixed Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n							<h4>Removable Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-07 06:19:38', '2026-04-07 06:19:38', '', 10, 'https://mrarif.me/drsarah/?p=375', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(376, 1, '2026-04-07 06:20:28', '2026-04-07 06:20:28', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h1>Dr. Sarah Alabdullah</h1>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h4>Fixed Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n							<h4>Removable Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-07 06:20:28', '2026-04-07 06:20:28', '', 10, 'https://mrarif.me/drsarah/?p=376', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(377, 1, '2026-04-07 06:20:28', '2026-04-07 06:20:28', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h1>Dr. Sarah Alabdullah</h1>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h4>Fixed Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n							<h4>Removable Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-07 06:20:28', '2026-04-07 06:20:28', '', 10, 'https://mrarif.me/drsarah/?p=377', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(378, 1, '2026-04-07 06:20:28', '2026-04-07 06:20:28', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h1>Dr. Sarah Alabdullah</h1>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h4>Fixed Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n							<h4>Removable Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-07 06:20:28', '2026-04-07 06:20:28', '', 10, 'https://mrarif.me/drsarah/?p=378', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(379, 1, '2026-04-07 06:31:14', '2026-04-07 06:31:14', '<ul>\n							<li>\n											<a href=\"https://mrarif.me/drsarah/book-appointment/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z\"></path></svg>						\n										Book your complimentary consultation\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/drsarah/\">\n							<img width=\"462\" height=\"540\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15.png\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15.png 462w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15-257x300.png 257w\" sizes=\"(max-width: 462px) 100vw, 462px\" />								</a>', 'Elementor Header #45', '', 'inherit', 'closed', 'closed', '', '45-revision-v1', '', '', '2026-04-07 06:31:14', '2026-04-07 06:31:14', '', 45, 'https://mrarif.me/drsarah/?p=379', 0, 'revision', '', 0),
(381, 1, '2026-04-07 06:35:15', '2026-04-07 06:35:15', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book Appointment</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 06:35:15', '2026-04-07 06:35:15', '', 12, 'https://mrarif.me/drsarah/?p=381', 0, 'revision', '', 0),
(382, 1, '2026-04-07 06:35:16', '2026-04-07 06:35:16', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 06:35:16', '2026-04-07 06:35:16', '', 12, 'https://mrarif.me/drsarah/?p=382', 0, 'revision', '', 0),
(383, 1, '2026-04-07 06:43:50', '2026-04-07 06:43:50', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 06:43:50', '2026-04-07 06:43:50', '', 12, 'https://mrarif.me/drsarah/?p=383', 0, 'revision', '', 0),
(384, 1, '2026-04-07 06:43:50', '2026-04-07 06:43:50', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 06:43:50', '2026-04-07 06:43:50', '', 12, 'https://mrarif.me/drsarah/?p=384', 0, 'revision', '', 0),
(385, 1, '2026-04-07 06:43:50', '2026-04-07 06:43:50', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 06:43:50', '2026-04-07 06:43:50', '', 12, 'https://mrarif.me/drsarah/?p=385', 0, 'revision', '', 0),
(386, 1, '2026-04-07 06:47:47', '2026-04-07 06:47:47', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 06:47:47', '2026-04-07 06:47:47', '', 12, 'https://mrarif.me/drsarah/?p=386', 0, 'revision', '', 0),
(387, 1, '2026-04-07 06:47:47', '2026-04-07 06:47:47', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 06:47:47', '2026-04-07 06:47:47', '', 12, 'https://mrarif.me/drsarah/?p=387', 0, 'revision', '', 0),
(388, 1, '2026-04-07 06:47:48', '2026-04-07 06:47:48', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 06:47:48', '2026-04-07 06:47:48', '', 12, 'https://mrarif.me/drsarah/?p=388', 0, 'revision', '', 0),
(389, 1, '2026-04-07 06:49:19', '2026-04-07 06:49:19', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 06:49:19', '2026-04-07 06:49:19', '', 12, 'https://mrarif.me/drsarah/?p=389', 0, 'revision', '', 0),
(390, 1, '2026-04-07 06:49:19', '2026-04-07 06:49:19', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 06:49:19', '2026-04-07 06:49:19', '', 12, 'https://mrarif.me/drsarah/?p=390', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(391, 1, '2026-04-07 06:49:20', '2026-04-07 06:49:20', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 06:49:20', '2026-04-07 06:49:20', '', 12, 'https://mrarif.me/drsarah/?p=391', 0, 'revision', '', 0),
(392, 1, '2026-04-07 06:50:49', '2026-04-07 06:50:49', 'This offer includes a comprehensive dental examination and, if clinically necessary, appropriate radiographs. It is available exclusively for new patients who book through our website and is limited to one consultation per patient. We reserve the right to determine eligibility, the scope of services provided, and case acceptance based on clinical judgment. Additional diagnostic tests or treatment, if required, are not included. This offer does not include any treatment fees.', 'form', '', 'publish', 'closed', 'closed', '', 'form', '', '', '2026-04-07 06:53:26', '2026-04-07 06:53:26', '', 0, 'https://mrarif.me/drsarah/?post_type=elementor_library&#038;p=392', 0, 'elementor_library', '', 0),
(393, 1, '2026-04-07 06:53:26', '2026-04-07 06:53:26', '', 'form', '', 'inherit', 'closed', 'closed', '', '392-revision-v1', '', '', '2026-04-07 06:53:26', '2026-04-07 06:53:26', '', 392, 'https://mrarif.me/drsarah/?p=393', 0, 'revision', '', 0),
(394, 1, '2026-04-07 06:53:26', '2026-04-07 06:53:26', 'This offer includes a comprehensive dental examination and, if clinically necessary, appropriate radiographs. It is available exclusively for new patients who book through our website and is limited to one consultation per patient. We reserve the right to determine eligibility, the scope of services provided, and case acceptance based on clinical judgment. Additional diagnostic tests or treatment, if required, are not included. This offer does not include any treatment fees.', 'form', '', 'inherit', 'closed', 'closed', '', '392-revision-v1', '', '', '2026-04-07 06:53:26', '2026-04-07 06:53:26', '', 392, 'https://mrarif.me/drsarah/?p=394', 0, 'revision', '', 0),
(395, 1, '2026-04-07 06:55:09', '2026-04-07 06:55:09', '<h6>Quick link</h6>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/drsarah/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/drsarah/contact-me/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Contact Me\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/drsarah/refer-a-patient/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Refer a Patient\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n												<a role=\"button\">\n									Click here\n					</a>\n									<p>© 2026. All rights reserved.</p>', 'Elementor Footer #262', '', 'inherit', 'closed', 'closed', '', '262-revision-v1', '', '', '2026-04-07 06:55:09', '2026-04-07 06:55:09', '', 262, 'https://mrarif.me/drsarah/?p=395', 0, 'revision', '', 0),
(396, 1, '2026-04-07 06:56:33', '2026-04-07 06:56:33', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 06:56:33', '2026-04-07 06:56:33', '', 12, 'https://mrarif.me/drsarah/?p=396', 0, 'revision', '', 0),
(397, 1, '2026-04-07 06:56:33', '2026-04-07 06:56:33', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 06:56:33', '2026-04-07 06:56:33', '', 12, 'https://mrarif.me/drsarah/?p=397', 0, 'revision', '', 0),
(398, 1, '2026-04-07 06:56:33', '2026-04-07 06:56:33', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 06:56:33', '2026-04-07 06:56:33', '', 12, 'https://mrarif.me/drsarah/?p=398', 0, 'revision', '', 0),
(399, 1, '2026-04-07 06:57:20', '2026-04-07 06:57:20', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 06:57:20', '2026-04-07 06:57:20', '', 12, 'https://mrarif.me/drsarah/?p=399', 0, 'revision', '', 0),
(400, 1, '2026-04-07 06:57:20', '2026-04-07 06:57:20', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 06:57:20', '2026-04-07 06:57:20', '', 12, 'https://mrarif.me/drsarah/?p=400', 0, 'revision', '', 0),
(401, 1, '2026-04-07 06:57:20', '2026-04-07 06:57:20', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 06:57:20', '2026-04-07 06:57:20', '', 12, 'https://mrarif.me/drsarah/?p=401', 0, 'revision', '', 0),
(402, 1, '2026-04-07 06:57:52', '2026-04-07 06:57:52', '<h6>Quick link</h6>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/drsarah/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/drsarah/contact-me/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Contact Me\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/drsarah/refer-a-patient/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Refer a Patient\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n												<a role=\"button\">\n									Click here\n					</a>\n									<p>© 2026. All rights reserved.</p>', 'Elementor Footer #262', '', 'inherit', 'closed', 'closed', '', '262-revision-v1', '', '', '2026-04-07 06:57:52', '2026-04-07 06:57:52', '', 262, 'https://mrarif.me/drsarah/?p=402', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(403, 1, '2026-04-07 07:04:57', '2026-04-07 07:04:57', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 07:04:57', '2026-04-07 07:04:57', '', 12, 'https://mrarif.me/drsarah/?p=403', 0, 'revision', '', 0),
(404, 1, '2026-04-07 07:04:57', '2026-04-07 07:04:57', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 07:04:57', '2026-04-07 07:04:57', '', 12, 'https://mrarif.me/drsarah/?p=404', 0, 'revision', '', 0),
(405, 1, '2026-04-07 07:04:57', '2026-04-07 07:04:57', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 07:04:57', '2026-04-07 07:04:57', '', 12, 'https://mrarif.me/drsarah/?p=405', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(406, 1, '2026-04-07 07:05:34', '2026-04-07 07:05:34', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h1>Dr. Sarah Alabdullah</h1>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h4>Fixed Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n							<h4>Removable Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-07 07:05:34', '2026-04-07 07:05:34', '', 10, 'https://mrarif.me/drsarah/?p=406', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(407, 1, '2026-04-07 07:05:34', '2026-04-07 07:05:34', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h1>Dr. Sarah Alabdullah</h1>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h4>Fixed Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n							<h4>Removable Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-07 07:05:34', '2026-04-07 07:05:34', '', 10, 'https://mrarif.me/drsarah/?p=407', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(408, 1, '2026-04-07 07:05:34', '2026-04-07 07:05:34', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h1>Dr. Sarah Alabdullah</h1>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h4>Fixed Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n							<h4>Removable Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-07 07:05:34', '2026-04-07 07:05:34', '', 10, 'https://mrarif.me/drsarah/?p=408', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(409, 1, '2026-04-07 07:05:44', '2026-04-07 07:05:44', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 07:05:44', '2026-04-07 07:05:44', '', 12, 'https://mrarif.me/drsarah/?p=409', 0, 'revision', '', 0),
(410, 1, '2026-04-07 07:05:45', '2026-04-07 07:05:45', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 07:05:45', '2026-04-07 07:05:45', '', 12, 'https://mrarif.me/drsarah/?p=410', 0, 'revision', '', 0),
(411, 1, '2026-04-07 07:05:45', '2026-04-07 07:05:45', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 07:05:45', '2026-04-07 07:05:45', '', 12, 'https://mrarif.me/drsarah/?p=411', 0, 'revision', '', 0),
(412, 1, '2026-04-07 07:06:09', '2026-04-07 07:06:09', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 07:06:09', '2026-04-07 07:06:09', '', 12, 'https://mrarif.me/drsarah/?p=412', 0, 'revision', '', 0),
(413, 1, '2026-04-07 07:06:09', '2026-04-07 07:06:09', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 07:06:09', '2026-04-07 07:06:09', '', 12, 'https://mrarif.me/drsarah/?p=413', 0, 'revision', '', 0),
(414, 1, '2026-04-07 07:06:09', '2026-04-07 07:06:09', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 07:06:09', '2026-04-07 07:06:09', '', 12, 'https://mrarif.me/drsarah/?p=414', 0, 'revision', '', 0),
(415, 1, '2026-04-07 07:06:17', '2026-04-07 07:06:17', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 07:06:17', '2026-04-07 07:06:17', '', 12, 'https://mrarif.me/drsarah/?p=415', 0, 'revision', '', 0),
(416, 1, '2026-04-07 07:06:17', '2026-04-07 07:06:17', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 07:06:17', '2026-04-07 07:06:17', '', 12, 'https://mrarif.me/drsarah/?p=416', 0, 'revision', '', 0),
(417, 1, '2026-04-07 07:06:17', '2026-04-07 07:06:17', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 07:06:17', '2026-04-07 07:06:17', '', 12, 'https://mrarif.me/drsarah/?p=417', 0, 'revision', '', 0),
(418, 1, '2026-04-07 07:10:09', '2026-04-07 07:10:09', '<h2>Refer A Patient</h2>', 'Refer a Patient', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-07 07:10:09', '2026-04-07 07:10:09', '', 14, 'https://mrarif.me/drsarah/?p=418', 0, 'revision', '', 0),
(419, 1, '2026-04-07 07:10:09', '2026-04-07 07:10:09', '<h2>Refer A Patient</h2>', 'Refer a Patient', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-07 07:10:09', '2026-04-07 07:10:09', '', 14, 'https://mrarif.me/drsarah/?p=419', 0, 'revision', '', 0),
(421, 1, '2026-04-07 07:15:26', '2026-04-07 07:15:26', '<h2>Refer A Patient</h2>', 'Refer a Patient', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-07 07:15:26', '2026-04-07 07:15:26', '', 14, 'https://mrarif.me/drsarah/?p=421', 0, 'revision', '', 0),
(422, 1, '2026-04-07 07:15:26', '2026-04-07 07:15:26', '<h2>Refer A Patient</h2>', 'Refer a Patient', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-07 07:15:26', '2026-04-07 07:15:26', '', 14, 'https://mrarif.me/drsarah/?p=422', 0, 'revision', '', 0),
(423, 1, '2026-04-07 07:15:26', '2026-04-07 07:15:26', '<h2>Refer A Patient</h2>', 'Refer a Patient', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-04-07 07:15:26', '2026-04-07 07:15:26', '', 14, 'https://mrarif.me/drsarah/?p=423', 0, 'revision', '', 0),
(424, 1, '2026-04-07 07:17:30', '2026-04-07 07:17:30', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 07:17:30', '2026-04-07 07:17:30', '', 12, 'https://mrarif.me/drsarah/?p=424', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(425, 1, '2026-04-07 07:17:30', '2026-04-07 07:17:30', '<h2>I Practice at Two Convenient Locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 07:17:30', '2026-04-07 07:17:30', '', 12, 'https://mrarif.me/drsarah/?p=425', 0, 'revision', '', 0),
(426, 1, '2026-04-07 07:17:30', '2026-04-07 07:17:30', '<h2>Book your appointment at one of our following locations</h2>					<h6>BC Perio Vancouver</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x548673c32f149bf1:0x6e152413a5dcf39f!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#501-777 West Broadway Vancouver, BC V5Z 4J7\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6048720222\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 872-0222\n											</a>\n									</li>\n						</ul>\n							<h6>BC Perio Coquitlam</h6>							<ul>\n							<li>\n											<a href=\"https://www.google.com/maps/dir//&#039;&#039;/data=!4m7!4m6!1m1!4e2!1m2!1m1!1s0x54867f3293ab3be1:0x17d8f567a3194be6!3e0?g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										#250 – 1175 Johnson Street Coquitlam, BC V3B 7K1\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info2@bcperio.ca\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info2@bcperio.ca\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:6049368244\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(604) 936-8244\n											</a>\n									</li>\n						</ul>\n							<h2>Book your complimentary consultation</h2>', 'Book Appointment', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-04-07 07:17:30', '2026-04-07 07:17:30', '', 12, 'https://mrarif.me/drsarah/?p=426', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(427, 1, '2026-04-07 07:29:23', '2026-04-07 07:29:23', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h1>Dr. Sarah Alabdullah</h1>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h4>Fixed Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n							<h4>Removable Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-07 07:29:23', '2026-04-07 07:29:23', '', 10, 'https://mrarif.me/drsarah/?p=427', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(428, 1, '2026-04-07 07:29:23', '2026-04-07 07:29:23', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h1>Dr. Sarah Alabdullah</h1>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h4>Fixed Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n							<h4>Removable Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-07 07:29:23', '2026-04-07 07:29:23', '', 10, 'https://mrarif.me/drsarah/?p=428', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(432, 1, '2026-04-07 07:30:00', '2026-04-07 07:30:00', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h1>Dr. Sarah Alabdullah</h1>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h4>Fixed Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h4>Removable Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-07 07:30:00', '2026-04-07 07:30:00', '', 10, 'https://mrarif.me/drsarah/?p=432', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(429, 1, '2026-04-07 07:29:23', '2026-04-07 07:29:23', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h1>Dr. Sarah Alabdullah</h1>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h4>Fixed Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n							<h4>Removable Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-07 07:29:23', '2026-04-07 07:29:23', '', 10, 'https://mrarif.me/drsarah/?p=429', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(430, 1, '2026-04-07 07:29:59', '2026-04-07 07:29:59', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h1>Dr. Sarah Alabdullah</h1>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h4>Fixed Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n							<h4>Removable Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-07 07:29:59', '2026-04-07 07:29:59', '', 10, 'https://mrarif.me/drsarah/?p=430', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(431, 1, '2026-04-07 07:30:00', '2026-04-07 07:30:00', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h1>Dr. Sarah Alabdullah</h1>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h4>Fixed Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n							<h4>Removable Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-07 07:30:00', '2026-04-07 07:30:00', '', 10, 'https://mrarif.me/drsarah/?p=431', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(433, 1, '2026-04-07 08:08:43', '2026-04-07 08:08:43', '<ul>\n							<li>\n											<a href=\"https://mrarif.me/drsarah/book-appointment/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z\"></path></svg>						\n										Book your complimentary consultation\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/drsarah/\">\n							<img width=\"462\" height=\"540\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15.png\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15.png 462w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15-257x300.png 257w\" sizes=\"(max-width: 462px) 100vw, 462px\" />								</a>', 'Elementor Header #45', '', 'inherit', 'closed', 'closed', '', '45-revision-v1', '', '', '2026-04-07 08:08:43', '2026-04-07 08:08:43', '', 45, 'https://mrarif.me/drsarah/?p=433', 0, 'revision', '', 0),
(434, 1, '2026-04-07 08:09:40', '2026-04-07 08:09:40', '<ul>\n							<li>\n											<a href=\"https://mrarif.me/drsarah/book-appointment/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z\"></path></svg>						\n										Book your complimentary consultation\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/drsarah/\">\n							<img width=\"462\" height=\"540\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15.png\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15.png 462w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/logo-15-257x300.png 257w\" sizes=\"(max-width: 462px) 100vw, 462px\" />								</a>', 'Elementor Header #45', '', 'inherit', 'closed', 'closed', '', '45-revision-v1', '', '', '2026-04-07 08:09:40', '2026-04-07 08:09:40', '', 45, 'https://mrarif.me/drsarah/?p=434', 0, 'revision', '', 0),
(435, 1, '2026-04-07 11:27:11', '2026-04-07 11:27:11', '', 'implantation_14717707', '', 'inherit', 'open', 'closed', '', 'implantation_14717707', '', '', '2026-04-07 11:27:11', '2026-04-07 11:27:11', '', 10, 'https://mrarif.me/drsarah/wp-content/uploads/2026/04/implantation_14717707.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(436, 1, '2026-04-07 11:27:18', '2026-04-07 11:27:18', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h1>Dr. Sarah Alabdullah</h1>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h4>Fixed Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h4>Removable Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-07 11:27:18', '2026-04-07 11:27:18', '', 10, 'https://mrarif.me/drsarah/?p=436', 0, 'revision', '', 0);
INSERT INTO `wpd_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(437, 1, '2026-04-07 11:27:18', '2026-04-07 11:27:18', '<img width=\"837\" height=\"867\" src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg\" alt=\"\" srcset=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah.jpg 837w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-290x300.jpg 290w, https://mrarif.me/drsarah/wp-content/uploads/2026/04/Sarah-Alabdullah-768x796.jpg 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" />																<h5>Dr. Sarah Alabdullah</h5>							<h3>\n					Certified Specialist in\n				Prosthodontics			\n				</h3>\n					<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n							<h1>Dr. Sarah Alabdullah</h1>					<h6>Certified Specialist in Prosthodontics</h6>		<p>Dr. Sarah Alabdullah is a Certified Specialist in Prosthodontics with over a decade of clinical experience, practicing dentistry since 2013. She is a Fellow of the Royal College of Dentists of Canada and completed her Master’s degree and specialty training in prosthodontics at the University of British Columbia in 2020. She currently practices in Vancouver and Coquitlam, British Columbia.</p><p>Dr. Alabdullah’s clinical practice focuses on the diagnosis and management of complex rehabilitative dental cases. Her expertise includes implant restorations, implant-supported hybrid prostheses, crowns and bridges, full-mouth rehabilitation, and both complete and removable dentures. She has extensive experience in both tooth- and implant-supported prostheses and incorporates advanced digital dentistry along with modern pain-management techniques to deliver predictable, patient-centered outcomes with minimal discomfort.<br /><br />Outside of dentistry, Dr. Alabdullah enjoys cooking, swimming, and traveling. She values spending quality time with her family and exploring the natural beauty of British Columbia.</p>			<h2>My work</h2>					<h6>follow me on instagram</h6>							\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-5.jpg\" alt=\"my work (5)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-7.jpg\" alt=\"my work (7)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-2.jpg\" alt=\"my work (2)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-3.jpg\" alt=\"my work (3)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-4.jpg\" alt=\"my work (4)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-1.jpg\" alt=\"my work (1)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work-6.jpg\" alt=\"my work (6)\">\n									</a>\n									<a href=\"https://www.instagram.com/dr_sarah_alabdullah/\" target=\"_blank\">\n																			<img src=\"https://mrarif.me/drsarah/wp-content/uploads/2026/04/my-work.jpg\" alt=\"my work\">\n									</a>\n							<h2>My Services </h2>					<h4>Fixed Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 1707 1707\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_177341960\"><g><g id=\"_177341576\"><path d=\"m1039 1584c-2 0-4 0-7 0-124-6-125-152-125-200 0-98-30-144-49-144-20 0-49 46-49 144-1 48-1 194-126 200-2 0-4 0-7 0-32 0-59-11-80-32-43-45-49-123-48-165 1-53-1-185-48-258-65-101-61-212-61-221 0-107 60-176 152-176 31 0 63 8 95 23 59 28 115 41 172 41s113-13 171-41c34-16 67-24 97-24 41 0 76 15 102 43 36 39 53 101 47 173-4 47-18 117-59 182-47 73-50 205-49 258 0 51-7 93-21 125-21 47-58 72-107 72zm-181-377c40 0 82 55 82 177 1 112 30 164 94 166 38 2 65-15 81-51 12-28 19-66 19-112-1-69 4-198 54-276 38-59 50-123 54-167 5-62-9-116-39-147-20-22-46-33-77-33-25 0-53 7-83 21-62 29-124 44-185 44s-124-15-186-44c-28-13-55-20-81-20-73 0-118 55-118 143v1c0 1-5 108 55 202 50 78 55 207 54 277-1 30 2 103 38 140 16 16 36 24 61 22 65-3 94-54 94-166 1-122 42-177 83-177z\"></path></g><g id=\"_177341696\"><path d=\"m1082 1054c-9 0-16-8-16-17 0-114-94-208-208-208-9 0-17-7-17-16 0-10 8-17 17-17 133 0 241 108 241 241 0 9-7 17-17 17z\"></path></g><g><g id=\"_177341624\"><path d=\"m1161 616h-607c-6 0-12-4-15-10l-110-240c-2-6-2-13 2-18 4-4 11-7 17-5l246 52 150-264c3-5 9-8 15-8s11 3 14 8l146 264 249-52c6-2 12 1 16 6 4 4 5 11 2 17l-110 240c-2 6-8 10-15 10zm-596-34h585l92-200-228 48c-7 2-15-2-18-8l-138-249-141 249c-4 6-11 10-18 8l-226-48z\"></path></g><g id=\"_177341912\"><path d=\"m1136 688h-557c-9 0-17-8-17-17s8-17 17-17h557c10 0 17 8 17 17s-7 17-17 17z\"></path></g></g><g id=\"_177342008\"><path d=\"m600 1584c-2 0-4 0-7 0-124-6-125-152-125-200-1-98-30-144-49-144-20 0-49 46-50 144 0 48-1 194-125 200-34 1-63-9-85-30-45-45-51-124-50-167 1-53-2-185-48-258-65-101-61-212-61-221 0-70 26-125 72-154 47-30 111-29 175 1 79 37 155 49 232 36 9-2 17 4 19 13 1 10-5 18-14 20-84 14-166 1-251-39-54-25-106-26-143-3-36 23-56 68-56 126v1c0 1-5 108 55 202 50 78 55 207 53 277 0 30 3 105 40 142 16 15 36 22 60 20 65-3 94-54 94-166 1-122 42-177 83-177 40 0 82 55 82 177 1 112 30 163 94 166 14 1 26-1 37-5 9-4 18 1 22 9 3 9-1 18-9 22-14 5-29 8-45 8z\"></path></g><g id=\"_177341864\"><path d=\"m1107 1584c-14 0-28-2-40-6-8-3-13-13-10-21 3-9 12-14 21-11 10 4 21 5 34 5 64-3 93-55 93-167 1-122 42-177 83-177s82 55 82 177c1 112 30 163 94 166 25 2 45-5 60-20 38-37 41-112 40-142-1-70 4-199 54-277 60-94 55-201 55-202v-1c0-58-20-103-56-126-37-23-90-22-144 3-82 39-161 52-243 40-9-1-15-10-14-19 2-9 10-15 19-14 75 11 148-1 224-37 65-30 129-31 176-1 46 29 71 84 71 154 1 9 5 120-60 221-47 73-50 205-48 258 0 43-5 122-50 167-23 21-51 31-85 30-125-6-126-152-126-200 0-98-29-144-49-144s-49 46-49 144c0 48-1 194-126 200-2 0-4 0-6 0z\"></path></g></g></g></g></svg>									\n					<h6>\n						Crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m435.188 67.151h-358.496c-38.979 0-70.688 31.768-70.688 70.812v98.053c0 7.415 6.029 13.444 13.439 13.444h12.121v10.441c0 3.379 2.739 6.121 6.119 6.121h217.477c3.383 0 6.119-2.741 6.119-6.121v-84.134c0-30.839 25.09-55.927 55.932-55.927 30.789 0 55.933 25.099 56.049 55.951 0 .072.02.141.02.213-.047.961-.143 1.912-.143 2.886v8.348c-7.969-3.276-16.672-5.109-25.807-5.109-37.59 0-68.169 30.583-68.169 68.172v72.476l-126.816 111.351c-.105.093-.148.226-.246.324-.364.368-.663.772-.925 1.212-.117.205-.26.388-.352.605-.263.585-.423 1.203-.489 1.847-.012.083-.047.158-.051.243-.039.672.021 1.357.209 2.03.016.051.053.092.068.141.057.19.175.355.252.54.223.523.483 1.01.832 1.442.061.079.077.177.145.252.24.272.514.501.785.719.055.047.098.103.158.146.466.352.982.605 1.518.807.127.048.25.084.383.124.57.171 1.153.287 1.745.287.005 0 .005.002.011.002h75.249c1.249 0 2.471-.381 3.493-1.095l111.015-77.173c1.364-.946 2.282-2.408 2.549-4.048l3.538-21.86h57.15c3.384 0 6.119-2.742 6.119-6.122v-68.529h57.129c3.385 0 6.12-2.741 6.12-6.121v-10.441h13.807c7.284 0 13.438-6.157 13.438-13.444v-98.053c0-39.045-31.764-70.812-70.807-70.812zm-391.38 111.738c0-22.37 18.199-40.567 40.568-40.567 22.367 0 40.564 18.197 40.564 40.567v74.89h-81.132zm205.234 74.889h-111.861v-78.012c0-30.839 25.089-55.927 55.932-55.927 30.84 0 55.93 25.088 55.93 55.927v78.012zm36.24 86.895h19.414l-90.549 55.485 66.145-58.081c1.107 1.566 2.922 2.596 4.99 2.596zm-55.563 91.933h-51.632l145.436-89.115c.961-.588 1.741-1.427 2.255-2.428l20.467-39.971-5.169 31.908c-.091.353-.147.713-.177 1.088l-3.877 23.924zm173.544-104.176h-49.047l10.32-63.711c.484-2.973-1.268-5.855-4.133-6.792-2.864-.937-5.984.345-7.356 3.023l-34.554 67.48h-27.092v-78.131c0-30.838 25.091-55.928 55.93-55.928 10.296 0 19.922 2.845 28.217 7.719.384.295.795.556 1.242.755 15.859 9.882 26.473 27.43 26.473 47.454zm63.25-74.652h-51.012v-3.479c0-23.512-11.968-44.279-30.128-56.541v-14.87c0-22.37 18.205-40.567 40.572-40.567 22.368 0 40.567 18.197 40.567 40.567v74.89zm27.244-17.762c0 .585-.617 1.202-1.2 1.202h-13.807v-58.329c0-29.119-23.687-52.81-52.805-52.81-19.085 0-35.784 10.208-45.063 25.419-9.885-25.626-34.688-43.901-63.671-43.901-27.576 0-51.324 16.49-62.051 40.099-10.727-23.609-34.475-40.099-62.049-40.099-29.051 0-53.848 18.301-63.646 43.953-9.271-15.238-25.988-25.47-45.09-25.47-29.122 0-52.811 23.691-52.811 52.81v58.329h-12.12c-.708 0-1.2-.632-1.2-1.202v-98.053c0-32.294 26.222-58.569 58.448-58.569h358.495c32.291 0 58.569 26.274 58.569 58.569v98.052z\"></path></svg>									\n					<h6>\n						Veneers					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m58 39.25h-4.25v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.1797c-.9219 0-1.7773.458-2.2881 1.2246l-.8125 1.2188c-.2324.3486-.6211.5566-1.04.5566h-3.8594c-.4189 0-.8076-.208-1.04-.5566l-.8125-1.2188c-.5107-.7666-1.3662-1.2246-2.2881-1.2246h-4.1797v-2.25c0-.9648-.7852-1.75-1.75-1.75h-8c-.9648 0-1.75.7852-1.75 1.75v2.25h-4.25c-1.5166 0-2.75 1.2334-2.75 2.75v14c0 2.6191 2.1309 4.75 4.75 4.75h48c2.6191 0 4.75-2.1309 4.75-4.75v-14c0-1.5166-1.2334-2.75-2.75-2.75zm-1.9316 1.5c-.1152.6055-.2314 1.2397-.2627 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7627.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0557-2.9326-4.0698-2.1074.0142-2.5498 2.2632-2.9043 4.0703-.3906 1.9893-.6816 2.8062-1.4814 2.7593-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0293-.2446-.1387-.8516-.2637-1.4995h16.1377zm-12.3184-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm-19.6807 3.75c-.1162.6021-.2314 1.2339-.2637 1.5l-.0859.7139c-.4727 3.9854-.9619 8.106-3.3711 8.1079-.7578.062-1.0391-.7715-1.4307-2.7617-.3545-1.8071-.7959-4.0562-2.9326-4.0698-2.1074.0137-2.5488 2.2627-2.9033 4.0698-.3916 1.9893-.6748 2.8066-1.4824 2.7598-2.3574 0-2.8467-4.1206-3.3193-8.106l-.0859-.7144c-.0322-.2656-.1475-.8975-.2637-1.4995h16.1387zm-12.3193-3.75c0-.1377.1123-.25.25-.25h8c.1377 0 .25.1123.25.25v2.25h-8.5zm47.5 19c0 1.792-1.458 3.25-3.25 3.25h-48c-1.792 0-3.25-1.458-3.25-3.25v-14c0-.6895.5605-1.25 1.25-1.25h.4031c.1545.7934.2771 1.4682.3029 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2422.145 2.6445-2.1343 3.0059-3.9688.3379-1.7236.6211-2.8535 1.4512-2.8589.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0258-.2119.1484-.8868.3029-1.6802h.3328c.4189 0 .8076.208 1.04.5566l.8125 1.2188c.5107.7666 1.3662 1.2246 2.2881 1.2246h3.8594c.9219 0 1.7773-.458 2.2881-1.2246l.8125-1.2188c.2324-.3486.6211-.5566 1.04-.5566h.3329c.1545.7928.277 1.4679.3028 1.6797l.085.7114c.5498 4.6343 1.1182 9.4268 4.7549 9.4268h.002c2.2002.145 2.6445-2.1338 3.0049-3.9683.3389-1.7236.6221-2.854 1.4521-2.8594.8203.0054 1.1035 1.1353 1.4414 2.8589.3496 1.7783.7812 3.9775 2.7578 3.9775.0635 0 .1289-.002.1963-.0068 3.6895 0 4.2588-4.7935 4.8086-9.4287l.085-.7109c.0259-.2106.1462-.876.3023-1.6802h.4037c.6895 0 1.25.5605 1.25 1.25v14zm-54.459-39.5317c.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7651.3613-1.7666.666-2.7207.0857-.266.1683-.5296.2478-.7911.0793.261.1618.5241.2473.7896.2998.938.5059 1.9028.667 2.7231.2539 1.2852 1.3848 2.2183 2.6904 2.2183h11.5381c1.3057 0 2.4375-.9331 2.6914-2.2192.1494-.7646.3613-1.7651.666-2.7207.0861-.2672.1691-.5319.2488-.7945.0796.2621.1624.5264.2483.793.3057.9556.5176 1.957.667 2.7231.2539 1.2852 1.3857 2.2183 2.6914 2.2183h11.5381c1.3057 0 2.4365-.9331 2.6904-2.2183.1611-.8198.3662-1.7842.666-2.7217 1.3154-4.085 2.0449-7.6587-2.3789-10.0195-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9697.4663-2.874.002-1.3721-.7041-3.418-1.521-5.3262-.501-1.2613.6767-2.0916 1.4546-2.6193 2.3117-.529-.8578-1.3619-1.6356-2.6278-2.3112-1.8945-1.021-3.9365-.2031-5.3027.4985-.9219.4653-1.9707.4673-2.875.002-1.3711-.7041-3.417-1.521-5.3252-.501-1.2606.6763-2.0906 1.4537-2.6183 2.3102-.5278-.8567-1.3581-1.6342-2.619-2.3107-1.9053-1.021-3.9521-.2017-5.3262.502-.9033.4639-1.9502.4634-2.8691-.0005-1.3701-.7026-3.4111-1.5215-5.3047-.502-4.4258 2.3623-3.6963 5.936-2.3809 10.021.2998.9375.5049 1.9019.666 2.7217zm39.9102-11.42c.3711-.1978.7803-.2979 1.2383-.2979.7529 0 1.6367.269 2.6953.8115 1.3359.6865 2.8789.686 4.2383.0005 1.7012-.8726 2.9443-1.0361 3.9141-.5137 3.1494 1.6807 3.0576 3.8994 1.6602 8.2378 0 .0005 0 .001-.001.0015-.3223 1.0107-.54 2.0278-.71 2.8901-.1143.5845-.627 1.0083-1.2178 1.0083h-11.5381c-.5918 0-1.1045-.4238-1.2188-1.0073-.1582-.8052-.3818-1.8618-.7109-2.8926-.5792-1.798-.9285-3.228-.9215-4.4107-.0001-.0665.001-.1335-.0009-.1994.0648-1.5653.808-2.681 2.5728-3.6282zm-18.75 0c.3711-.1982.7803-.2979 1.2383-.2979.7529 0 1.6357.2686 2.6943.8115 1.335.686 2.8789.6865 4.2393.0005 1.7021-.8726 2.9434-1.0361 3.9141-.5137 1.7736.9465 2.519 2.0637 2.5825 3.6339-.0017.0601-.0009.1212-.001.1818.0096 1.1847-.3402 2.6182-.9213 4.4221 0 .0005 0 .001-.001.0015-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.7109-2.8916-.5705-1.7709-.9173-3.1843-.9211-4.3567.0005-.0875.0022-.1754-.0005-.2618.0671-1.5607.8105-2.6743 2.572-3.6198zm-18.7363-.001c.3662-.1968.7705-.2959 1.2246-.2959.748 0 1.6309.269 2.6914.813 1.3574.6851 2.8994.6821 4.2334-.002 1.707-.8755 2.9561-1.0376 3.9336-.5146 1.762.9456 2.5056 2.0593 2.5728 3.6203-.0027.0866-.001.1746-.0005.2622-.004 1.1726-.351 2.5863-.9219 4.3577-.3281 1.0293-.5518 2.0859-.71 2.8901-.1143.5845-.627 1.0083-1.2188 1.0083h-11.5381c-.5908 0-1.1035-.4238-1.2178-1.0083-.1699-.8623-.3877-1.8794-.71-2.8901-.001-.0005-.001-.001-.001-.0015-1.3975-4.3384-1.4893-6.5571 1.6621-8.2393zm25.5352 18.9526v8.1895l2.7197-2.7197c.293-.293.7676-.293 1.0605 0s.293.7676 0 1.0605l-3.293 3.293c-.3408.3413-.7891.5117-1.2373.5117s-.8965-.1704-1.2373-.5117l-3.293-3.293c-.293-.293-.293-.7676 0-1.0605s.7676-.293 1.0605 0l2.7197 2.7197v-8.1895c0-.4141.3359-.75.75-.75s.75.3359.75.75z\"></path></svg>									\n					<h6>\n						Bridges					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\" data-name=\"Layer 1\"><path d=\"m61 44.986h-.887c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.297-.9-2.893-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.138 3.411 1.141 4.717h-3.595c1.006-1.309 1.44-3.003 1.134-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.605-.289-3.202.061-4.497.961-1.296-.9-2.894-1.254-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-3.595c1.007-1.309 1.44-3.003 1.135-4.717-.424-2.444-2.355-4.387-4.808-4.833-1.604-.29-3.201.06-4.498.961-1.296-.9-2.892-1.252-4.5-.96-2.445.446-4.379 2.387-4.815 4.832-.298 1.718.137 3.411 1.141 4.717h-.888c-.552 0-1 .447-1 1v8.71c0 .553.448 1 1 1h58c.552 0 1-.447 1-1v-8.71c0-.553-.448-1-1-1zm-14.525-.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.27-.229 2.533.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.086-.639-1.086-1.295zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.588.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.427-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.271-.229 2.532.137 3.459 1.005.385.361.982.361 1.367 0 .926-.867 2.185-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.178.138-.249.224h-10.431c-.072-.086-.152-.165-.252-.225zm8.037 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.583.332-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.59.343-.937.308-.604-.059-1.076-.627-1.076-1.295zm-20.428-2.225c-1.43-.854-2.167-2.483-1.878-4.146.285-1.599 1.603-2.919 3.203-3.211 1.273-.23 2.533.138 3.459 1.005.385.361.982.361 1.367 0 .927-.867 2.186-1.231 3.458-1.006 1.604.292 2.917 1.61 3.194 3.212.295 1.658-.439 3.286-1.871 4.146-.098.059-.179.138-.25.224h-10.43c-.072-.086-.152-.165-.252-.225zm8.038 2.225h2.41v2.024c0 .338-.145.663-.396.892-.253.229-.582.337-.928.303-.599-.058-1.085-.639-1.085-1.295v-1.924zm-7.55 0h2.41v2.024c0 .335-.145.658-.397.887-.256.232-.587.343-.938.308-.603-.059-1.076-.627-1.076-1.295v-1.924zm52.918 6.71h-56v-6.71h1.082v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.568-.295 2.16-.831.67-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.898.095 1.798-.207 2.464-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.896.091 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h5.98v1.924c0 1.688 1.267 3.13 2.882 3.285.105.011.21.016.315.016.794 0 1.567-.295 2.159-.831.669-.607 1.054-1.471 1.054-2.369v-2.024h1.14v1.924c0 1.687 1.271 3.13 2.892 3.285.903.095 1.798-.207 2.465-.812.669-.606 1.053-1.472 1.053-2.373v-2.024h1.078v6.71z\"></path><path d=\"m34.341 31.861c-.44.333-.528.96-.195 1.4.333.441.96.529 1.401.195l3.84-2.902c.25-.189.397-.484.397-.798v-5.68c0-.365-.199-.701-.519-.876l-6.29-3.456v-10.441c0-.553-.448-1-1-1s-1 .447-1 1v10.466l-6.244 3.432c-.32.176-.519.511-.519.876v5.68c0 .313.147.608.397.798l3.84 2.902c.181.137.392.202.602.202.303 0 .602-.137.799-.397.333-.44.246-1.067-.195-1.4l-3.443-2.603v-4.59l5.785-3.18 5.785 3.18v4.59l-3.443 2.603z\"></path></svg>									\n					<h6>\n						Implant crowns					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"M16,33H8a3,3,0,0,0-3,3v1.142A4,4,0,0,0,2,41V51a5.006,5.006,0,0,0,5,5H57a5.006,5.006,0,0,0,5-5V41a4,4,0,0,0-3-3.858V36a3,3,0,0,0-3-3H48a3,3,0,0,0-3,3v1.055a4.926,4.926,0,0,0-2.849,1.312c-6.154,5.846-14.124,5.845-20.3-.006A4.936,4.936,0,0,0,19,37.054V36A3,3,0,0,0,16,33ZM7,36a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H7ZM6,39H18.391a6.949,6.949,0,0,0-.608,2.914,6.354,6.354,0,0,1-.137,1.33c-.208.8-.608,1.728-1.526,1.738-1.058-.026-1.377-.712-1.853-2.272-.809-3.541-3.736-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.525-1.738a6.277,6.277,0,0,1-.138-1.329,6.889,6.889,0,0,0-.588-2.873A1.9,1.9,0,0,1,6,39Zm41-3a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1v1H47Zm10.992,3a1.943,1.943,0,0,1,.387.042,6.884,6.884,0,0,0-.587,2.872,6.286,6.286,0,0,1-.138,1.33c-.207.806-.644,1.759-1.525,1.738-1.058-.026-1.377-.712-1.853-2.272-.81-3.541-3.737-3.534-4.543,0-.476,1.56-.795,2.246-1.853,2.272-.867,0-1.317-.933-1.526-1.738a6.354,6.354,0,0,1-.137-1.33A6.919,6.919,0,0,0,45.609,39Zm-38.41,4.745a7.927,7.927,0,0,0,.2-1.76,7.031,7.031,0,0,1,.115-1.238,4.9,4.9,0,0,1,.391-1.077c7.105,6.815,16.344,6.817,23.425,0a4.883,4.883,0,0,1,.505,2.313,7.927,7.927,0,0,0,.2,1.76c.543,2.1,1.815,3.3,3.51,3.236,2.613-.063,3.3-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.413,1.356,1.106,3.625,3.718,3.688,1.693.039,2.966-1.14,3.51-3.236a7.927,7.927,0,0,0,.2-1.76,5.591,5.591,0,0,1,.162-1.409A2.04,2.04,0,0,1,60,41V51a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V41a2.04,2.04,0,0,1,.047-.424,5.653,5.653,0,0,1,.162,1.411,7.917,7.917,0,0,0,.2,1.758c.543,2.1,1.835,3.29,3.51,3.236,2.612-.063,3.305-2.332,3.718-3.688.094-.308.234-.767.353-1.038a8.7,8.7,0,0,1,.364,1.038c.4,1.372,1.175,3.694,3.8,3.689C17.8,46.979,19.048,45.807,19.582,43.745Z\"></path><path d=\"M31,34.586l-1.293-1.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l3-3a1,1,0,0,0-1.414-1.414L33,34.586V29a1,1,0,0,0-2,0Z\"></path><circle cx=\"32\" cy=\"25\" r=\"1\"></circle><path d=\"M59.739,8.387c-1.974-1.176-4.95-1.416-7.7,1.145A6.368,6.368,0,0,0,42,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.975-1.176-4.949-1.416-7.7,1.145A6.368,6.368,0,0,0,22,10.646a6.7,6.7,0,0,0-2.256-2.259c-1.974-1.176-4.95-1.416-7.7,1.145A6.449,6.449,0,0,0,4.225,8.445a6.679,6.679,0,0,0-2.773,8.206,15.236,15.236,0,0,0,1.605,2.884A1,1,0,0,0,3.9,20H20.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,23.9,20H40.09a1,1,0,0,0,.845-.465c.36-.563.732-1.125,1.061-1.723.328.6.7,1.16,1.061,1.723A1,1,0,0,0,43.9,20H60.09a1,1,0,0,0,.845-.465,15.274,15.274,0,0,0,1.6-2.882A6.8,6.8,0,0,0,59.739,8.387ZM20.664,15.955A10.827,10.827,0,0,1,19.543,18H4.448a10.8,10.8,0,0,1-1.119-2.041A4.7,4.7,0,0,1,5.237,10.17c1.539-.9,3.959-1.015,6.049,1.455a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,20.664,15.955Zm20,0A10.827,10.827,0,0,1,39.543,18H24.448a10.8,10.8,0,0,1-1.119-2.041,4.778,4.778,0,0,1,1.908-5.789c1.539-.9,3.9-.959,6.049,1.455l0,0a13.387,13.387,0,0,0,2.319,2.061,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,40.664,15.955Zm20,0A10.827,10.827,0,0,1,59.543,18H44.448a10.8,10.8,0,0,1-1.119-2.041,4.82,4.82,0,0,1,1.908-5.789C46.8,9.3,49.2,9.155,51.286,11.625a12.474,12.474,0,0,0,2.322,2.063,1,1,0,1,0,1.162-1.627,13,13,0,0,1-1.338-1.079c1.678-1.537,3.6-1.876,5.284-.877A4.807,4.807,0,0,1,60.664,15.955Z\"></path></g></g></svg>									\n					<h6>\n						Implant bridge					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m419.693 205.81c1.682-2.106 2.73-4.737 2.73-7.643v-81.235c0-32.952-26.75-59.751-59.631-59.751h-297.093c-32.883 0-59.633 26.799-59.633 59.751v81.235c0 6.743 5.436 12.234 12.115 12.234h9v7.559c0 3.383 2.737 6.118 6.117 6.118h77.394 12.698l-6.581 22.385v-8.7c0-3.382-2.737-6.119-6.117-6.119h-77.393c-3.38 0-6.117 2.737-6.117 6.119v15.721h-9c-6.793 0-12.115 5.317-12.115 12.116v81.349c0 32.885 26.75 59.636 59.633 59.636h212.193c23.479 29.371 59.576 48.235 100.016 48.235 70.596 0 128.025-57.43 128.025-128.027 0-55.966-36.106-103.623-86.241-120.983zm-167.5 145.104c-18.813-5.673-32.551-23.319-32.551-43.441v-2.806l14.277-48.874c.455-1.557.271-3.233-.513-4.655-.775-1.426-2.09-2.477-3.647-2.932l-10.117-2.956v-1.371h60.829c-19.05 22.357-30.587 51.304-30.587 82.913.001 8.25.811 16.304 2.309 24.122zm-137.421-35.046c-.012-.049-.023-.096-.029-.145-1.497-7.155-1.237-14.591.858-21.762l17.961-61.096 77.567 22.646c.402.174.84.295 1.279.377l8.048 2.348-17.848 61.08c-5.596 19.175-23.5 32.564-43.538 32.564-4.249 0-8.479-.607-12.584-1.805-.176-.051-.36-.096-.552-.129-11.355-3.44-20.759-11.091-26.518-21.599-2.176-3.975-3.73-8.173-4.644-12.479zm101.859-119.828c-.372-.219-.768-.396-1.19-.537l-13.62-6.154 26.157-58.019c7.298-16.173 23.565-26.616 41.453-26.616 6.418 0 12.634 1.343 18.489 3.997 11 4.962 19.423 13.948 23.733 25.302.521 1.375.968 2.766 1.356 4.163.023.133.063.266.099.396 2.626 9.871 1.847 20.211-2.269 29.606-.004.008-.004.012-.004.014-.066.146-.111.299-.178.449l-26.271 58.024zm80.946 31.166 12.776-28.223v18.977c0 .053.016.092.016.143-4.454 2.775-8.723 5.815-12.792 9.103zm25.14-15.912-.122-39.603c4.438-10.883 5.391-22.654 2.833-34.033 5.285-11.813 16.713-19.408 29.683-19.408 18.001 0 32.642 14.589 32.642 32.516v48.421c-3.254-.256-6.526-.418-9.844-.418-19.755 0-38.471 4.501-55.192 12.525zm-304.416-13.127v-81.235c0-26.198 21.264-47.517 47.398-47.517h297.094c26.133 0 47.398 21.318 47.398 47.517l.113 81.235h-10.318v-47.401c0-24.679-20.133-44.752-44.876-44.752-13.999 0-26.758 6.38-35.101 16.968-5.963-11.229-15.334-20.139-27.045-25.421-7.444-3.378-15.361-5.087-23.534-5.087-22.687 0-43.338 13.276-52.608 33.818l-.854 1.892c-8.154-21.879-29.16-37.528-53.799-37.528-23.781 0-44.238 14.486-53.014 35.104-8.057-11.906-21.676-19.745-37.1-19.745-24.742 0-44.875 20.073-44.875 44.752v47.401h-8.879zm21.119-47.401c0-17.927 14.641-32.516 32.637-32.516 17.929 0 32.516 14.589 32.516 32.516v61.076h-65.153zm77.39-2.516c0-25.009 20.35-45.36 45.36-45.36 24.621 0 44.67 19.834 45.185 44.396l-19.208 42.602c-1.385 3.081-.018 6.701 3.058 8.094l16.2 7.321v6.539h-90.595zm96.713 75.828c3.381 0 6.119-2.735 6.119-6.118v-7.127l46.039 20.811h-52.158c-3.382 0-6.119 2.737-6.119 6.119v3.914l-60.276-17.599zm-174.103 19.801h65.152v44.211l-.712 2.43c-2.481 8.492-2.893 17.26-1.415 25.763-4.713 12.702-16.721 21.189-30.389 21.189-17.996 0-32.637-14.586-32.637-32.516v-61.077zm26.279 150.469c-26.135 0-47.398-21.264-47.398-47.399l-.119-81.229h9v39.237c0 24.679 20.133 44.75 44.875 44.75 14.297 0 27.305-6.724 35.586-17.618.355.711.66 1.446 1.043 2.147 7.401 13.5 19.566 23.295 34.25 27.587.186.055.383.1.589.139 5.073 1.434 10.304 2.16 15.547 2.16 23.046 0 43.827-13.982 52.832-34.719 7.521 17.833 23.841 31.4 43.571 34.791 3.275 10.717 7.935 20.834 13.751 30.154zm312.209 48.237c-63.844 0-115.791-51.945-115.791-115.793 0-63.844 51.947-115.787 115.791-115.787 63.848 0 115.793 51.943 115.793 115.787 0 63.848-51.945 115.793-115.793 115.793zm73.015-172.713c-.034-4.323-1.78-8.377-4.854-11.362-6.141-6.136-16.782-6.14-22.936 0l-45.226 45.229-45.229-45.229c-6.149-6.14-16.905-6.136-23.05 0-6.369 6.371-6.396 16.466 0 23.058l45.227 45.225-45.227 45.229c-3.071 3.07-4.764 7.144-4.764 11.467 0 4.325 1.692 8.396 4.764 11.467 6.133 6.14 16.9 6.146 23.055 0l45.225-45.228 45.226 45.228c3.075 3.071 7.146 4.763 11.471 4.763 4.327 0 8.401-1.691 11.4-4.7 3.17-3.075 4.918-7.171 4.918-11.529s-1.748-8.455-4.854-11.467l-45.226-45.229 45.226-45.225c3.161-3.165 4.883-7.32 4.854-11.697zm-13.507 3.037-49.557 49.556c-2.39 2.392-2.39 6.268 0 8.656l49.621 49.618c.777.752 1.202 1.729 1.202 2.749s-.425 1.996-1.267 2.815c-1.516 1.514-4.108 1.516-5.623-.004l-49.556-49.555c-1.195-1.197-2.763-1.791-4.329-1.791s-3.132.594-4.326 1.791l-49.556 49.556c-1.521 1.52-4.236 1.518-5.741 0-1.578-1.573-1.578-4.048 0-5.623l49.554-49.556c2.392-2.389 2.392-6.265 0-8.656l-49.491-49.487c-1.622-1.676-1.648-4.226-.065-5.813 1.516-1.508 4.227-1.516 5.744 0l49.557 49.562c2.297 2.29 6.357 2.29 8.655 0l49.55-49.562c1.526-1.516 4.051-1.57 5.693.063.984.955 1.197 2.018 1.202 2.737.01 1.075-.441 2.124-1.267 2.944z\"></path></svg>									\n					<h6>\n						Implant all-on-X					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 63.091 62\" width=\"512\"><path d=\"m60.86 38.36c-.706.847-1.453 1.647-2.231 2.409v-5.183l-.879-.879c-.366-.365-.786-.674-1.235-.931.067-.249.114-.505.114-.775v-3h2c1.103 0 2-.897 2-2v-10.185c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-1v-2c0-1.103-.897-2-2-2h-2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v2.184h-1.808c-2.622-1.305-5.548-2-8.486-2-2.596 0-5.121.519-7.506 1.541l-3.2 1.371-3.2-1.371c-2.385-1.022-4.91-1.541-7.506-1.541-9.353 0-17.257 6.696-18.795 15.921l-2.128 12.77 2.415-3.074c1.288-1.639 2.699-3.144 4.214-4.51v5.658l1.515-.909c6.386-3.831 13.699-5.856 21.147-5.856h4.676c4.311 0 8.567.681 12.663 2.008.004 1.099.899 1.992 1.999 1.992h2v3c0 .27.047.526.114.775-.45.257-.87.566-1.235.932l-.961.961c-4.446-3.67-9.978-5.668-15.818-5.668h-2.201c-5.839 0-11.371 1.998-15.817 5.668l-.961-.961c-1.085-1.085-2.587-1.707-4.121-1.707s-3.036.622-4.121 1.707l-.879.879v5.183c-.778-.762-1.526-1.563-2.231-2.409l-2.23-2.676.471 3.451c1.777 13.035 13.038 22.865 26.193 22.865h9.594c13.155 0 24.416-9.83 26.194-22.865l.471-3.451zm-7.231-36.36c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-40 39h-2c-.552 0-1-.449-1-1s.448-1 1-1h2c.949 0 1.88.363 2.58 1-.7.637-1.631 1-2.58 1zm-3 1.829c.313.111.649.171 1 .171h1v3.505c-.678-.344-1.347-.706-2-1.097zm4 .58c1.32.451 2.654.842 4 1.176v4.248c-1.366-.376-2.7-.847-4-1.398zm6 1.626c1.979.401 3.98.676 6 .825v4.124c-2.036-.039-4.042-.265-6-.672zm8 .931c.514.016 1.028.034 1.544.034h2.912c.516 0 1.03-.018 1.544-.034v4.034h-6zm8-.107c2.02-.148 4.021-.424 6-.825v4.276c-1.958.407-3.964.633-6 .672zm8-1.274c1.346-.333 2.68-.725 4-1.176v4.026c-1.3.55-2.634 1.021-4 1.398zm10-20.585h-2v-1c0-.551.448-1 1-1s1 .449 1 1zm-2 2h2v4h-2zm2 9.816c.262-.094.509-.216.732-.375.298.153.576.337.825.561-.446.402-.98.688-1.557.846zm0-3.816v1c0 .551-.448 1-1 1s-1-.449-1-1v-1zm-2 3.816v1.033c-.583-.159-1.131-.44-1.58-.849.251-.228.54-.409.842-.564.225.161.473.285.738.38zm-3 3.184h2c.552 0 1 .449 1 1s-.448 1-1 1h-2c-.949 0-1.88-.363-2.58-1 .7-.637 1.631-1 2.58-1zm1 4h1c.352 0 .686-.072 1-.184v2.592c-.653.391-1.322.754-2 1.097zm4-4.093c.707-.125 1.385-.381 2-.749v4.41c-.649.538-1.315 1.051-2 1.534zm6-23.907c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1s.448-1 1-1h12c.552 0 1 .449 1 1zm-14 5.794v5.114c-3.256-1.002-6.605-1.608-10-1.817v-5.888c3.438.366 6.785 1.238 10 2.591zm10-10.794v2h-2v-2zm-4 2h-2v-2h2zm-49.429 15.655.9-5.405c1.378-8.257 8.452-14.25 16.823-14.25 2.323 0 4.584.464 6.719 1.379l3.987 1.709 3.987-1.709c2.135-.915 4.396-1.379 6.719-1.379 2.206 0 4.402.44 6.437 1.269-.09.227-.143.473-.143.731v2h-1c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v.817c-4.406-1.742-9.041-2.633-13.805-2.633h-2.391c-10.412 0-20.154 4.208-27.233 11.655zm15.429-7.662v5.347c-1.354.346-2.685.777-4 1.253v-4.915c1.297-.642 2.631-1.206 4-1.685zm2-.63c1.949-.554 3.954-.941 6-1.157v5.877c-2.022.125-4.025.406-6 .811zm-12 6.084c1.275-.991 2.611-1.891 4-2.693v4.618c-1.36.57-2.7 1.193-4 1.903zm20.662-1.447c-.221 0-.441.017-.662.021v-5.97c.599-.03 1.2-.051 1.805-.051h2.391c.604 0 1.205.016 1.805.046v5.967c-.222-.003-.442-.013-.663-.013zm19.338 4v-10h10v10h-2v-5c0-1.654-1.346-3-3-3s-3 1.346-3 3v5zm-15.9 4c5.469 0 10.638 1.917 14.765 5.413-.739.291-1.421.728-1.987 1.294l-1.292 1.293 1.293 1.293c.274.274.575.518.896.731-4.318 1.305-8.783 1.976-13.319 1.976h-.456v-8h-2v8h-.456c-4.536 0-9.001-.671-13.319-1.976.321-.212.622-.456.896-.731l1.293-1.293-1.293-1.293c-.566-.566-1.248-1.003-1.987-1.294 4.127-3.496 9.296-5.413 14.765-5.413zm-20.52 4c-1.4 1.275-3.76 1.275-5.16 0 1.4-1.275 3.76-1.275 5.16 0zm-3.378 2.943c-.125.33-.202.684-.202 1.057v4.102c-.685-.483-1.351-.996-2-1.534v-4.402c.672.402 1.424.668 2.202.777zm27.595 21.057h-9.594c-10.965 0-20.505-7.387-23.479-17.672 6.376 6.186 14.901 9.672 23.896 9.672h8.76c8.995 0 17.52-3.486 23.896-9.672-2.974 10.285-12.514 17.672-23.479 17.672z\"></path></svg>									\n					<h6>\n						Full mouth rehabilitation					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\"><g id=\"Snile\"><path d=\"m74.37 72.3c-13.56 11.24-32.23 12.79-47.37 1.03a1 1 0 1 0 -1.22 1.58c15.92 12.34 35.63 10.76 49.91-1.07a1 1 0 0 0 .13-1.41 1 1 0 0 0 -1.45-.13z\"></path><path d=\"m49.64 74.14c20.93 0 35.7-19.73 37.88-38.8a8.19 8.19 0 0 0 -4.52-8.21l-10-5a23.33 23.33 0 0 0 -15.84-1.85c-8.15 2-7.21 1.86-15.08 0a23.36 23.36 0 0 0 -15.83 1.85c-8.85 4.45-9.74 4.85-9.64 4.85a8.31 8.31 0 0 0 -4.42 8.85c4.09 22.17 19.81 38.31 37.45 38.31zm-32.11-45.41c.1 0-1 .49 9.64-4.85a21.32 21.32 0 0 1 14.47-1.7c8.74 2.07 8 2 16 0a21.32 21.32 0 0 1 14.47 1.7l10 5a6.22 6.22 0 0 1 3.42 6.2c-2.09 18.2-16.09 37-35.9 37-16.63.06-31.55-15.38-35.45-36.65a6.27 6.27 0 0 1 3.35-6.7z\"></path><path d=\"m82.38 35.55a3.73 3.73 0 0 0 -3.68-4.13h-57.7a3.72 3.72 0 0 0 -3.67 4.13 32.73 32.73 0 0 0 65.1 0zm-61.38-2.13h57.7a1.72 1.72 0 0 1 1.69 1.92 30.77 30.77 0 0 1 -3.47 11.34h-14.81v-6.37a1 1 0 0 0 -2 0v6.37h-12.6v-2.68a1 1 0 0 0 -2 0v2.68h-11.43v-6.37a1 1 0 0 0 -2 0v6.37h-9.35a30.77 30.77 0 0 1 -3.47-11.34 1.72 1.72 0 0 1 1.74-1.92zm2.94 15.26h8.19v3.12a1 1 0 0 0 2 0v-3.12h26v3.12a1 1 0 0 0 2 0v-3.12h13.63c-12.04 18.93-39.84 18.9-51.87 0z\"></path><path d=\"m15.56 19.7c-3.68-1.7-4.91-2.89-6.56-6.58a1 1 0 0 0 -1.82 0c-1.68 3.69-2.9 4.88-6.59 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.91 2.89 6.58 6.58a1 1 0 0 0 1.83 0c1.66-3.69 2.89-4.92 6.57-6.58a1 1 0 0 0 -.01-1.82zm-7.48 5.73a11.22 11.22 0 0 0 -4.82-4.82 11.16 11.16 0 0 0 4.82-4.82 11.06 11.06 0 0 0 4.82 4.82 11.11 11.11 0 0 0 -4.82 4.82z\"></path><path d=\"m95.41 62.41c-3.69-1.66-4.91-2.89-6.58-6.58a1 1 0 0 0 -1.82 0c-1.66 3.69-2.89 4.92-6.58 6.58a1 1 0 0 0 0 1.82c3.69 1.66 4.92 2.89 6.58 6.58a1 1 0 0 0 1.82 0c1.67-3.69 2.89-4.92 6.58-6.58a1 1 0 0 0 0-1.82zm-7.49 5.73a11.11 11.11 0 0 0 -4.82-4.82 11.06 11.06 0 0 0 4.82-4.82 11.16 11.16 0 0 0 4.82 4.82 11.22 11.22 0 0 0 -4.82 4.82z\"></path><path d=\"m46.51 51.92a1 1 0 0 0 -1 1v2.17a1 1 0 0 0 2 0v-2.17a1 1 0 0 0 -1-1z\"></path></g></svg>									\n					<h6>\n						Smile makeover					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"SOLID\"><path d=\"M120,256.251q11.90661,2.73778,24,4.52124v-37.772q-12.0553,2.10719-24,4.83936Z\"></path><path d=\"M152,326.40381V312H126.84326A211.21154,211.21154,0,0,0,152,326.40381Z\"></path><path d=\"M160,262.68457Q174.09912,263.99085,188.38184,264H192V217.13623q-16.06384,1.13232-32,3.35815Z\"></path><path d=\"M302.51562,360.8877h-.001l-11.999,1.8457a226.70687,226.70687,0,0,1-69.03222,0l-11.998-1.8457a227.21219,227.21219,0,0,1-108.625-48.18165L39.89453,263.1709l50.501,63.96777a210.99137,210.99137,0,0,0,331.209,0l50.501-63.96875-60.96582,49.53613A227.213,227.213,0,0,1,302.51562,360.8877Z\"></path><path d=\"M168,333.35547a211.0727,211.0727,0,0,0,32,9.52392V312H168Z\"></path><path d=\"M104,231.80518q-9.81372,2.61-19.5332,5.62939l-11.98072,3.74414,2.42212.96875A307.29356,307.29356,0,0,0,104,252.1167Z\"></path><path d=\"M439.51367,241.17871l-11.98144-3.74414Q417.81885,234.39905,408,231.80542V252.1167a307.29356,307.29356,0,0,0,29.0918-9.96924Z\"></path><path d=\"M392,227.8396q-11.94141-2.733-24-4.83936v37.772q12.09082-1.77063,24-4.52124Z\"></path><path d=\"M248,215.94922H225.25293q-8.63709,0-17.25293.32007V264h40Z\"></path><path d=\"M360,326.40381A211.21154,211.21154,0,0,0,385.15674,312H360Z\"></path><path d=\"M479.84375,236.33984,394.127,183.958a111.87782,111.87782,0,0,0-104.748-6.39356l-.27442.125a79.98906,79.98906,0,0,1-66.209,0l-.28028-.12793A111.87838,111.87838,0,0,0,117.87305,183.958L32.15723,236.33984A.32978.32978,0,0,0,32,236.62012a.32879.32879,0,0,0,.42773.31445l47.26661-14.77148a487.48122,487.48122,0,0,1,145.55859-22.21387h61.49414a487.47017,487.47017,0,0,1,145.55762,22.21387l47.26855,14.77148a.28051.28051,0,0,0,.293-.04883A.286.286,0,0,0,480,236.62012.33108.33108,0,0,0,479.84375,236.33984Z\"></path><path d=\"M352,220.49438q-15.92944-2.22325-32-3.35815V264h3.61816Q337.89453,264,352,262.68457Z\"></path><path d=\"M223.916,346.919A211.14951,211.14951,0,0,0,248,349.22314V312H216v33.70117Z\"></path><path d=\"M264,349.22314a211.11708,211.11708,0,0,0,24.083-2.30419L296,345.70117V312H264Z\"></path><path d=\"M304,216.26929q-8.61474-.31422-17.25293-.32007H264V264h40Z\"></path><path d=\"M312,342.87939a211.0727,211.0727,0,0,0,32-9.52392V312H312Z\"></path><path d=\"M427.25439,144.27148,432,168l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L472,120l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L432,72l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L392,120l15.90137,3.97534A26.22144,26.22144,0,0,1,427.25439,144.27148Z\"></path><path d=\"M291.25439,96.27148,296,120l4.74561-23.72852a26.22144,26.22144,0,0,1,19.353-20.29614L336,72l-15.90137-3.97534a26.2218,26.2218,0,0,1-19.353-20.29614L296,24l-4.74561,23.72852a26.2218,26.2218,0,0,1-19.353,20.29614L256,72l15.90137,3.97534A26.22144,26.22144,0,0,1,291.25439,96.27148Z\"></path><path d=\"M100.74561,415.72852,96,392l-4.74561,23.72852a26.22186,26.22186,0,0,1-19.35278,20.29614L56,440l15.90161,3.97534a26.22151,26.22151,0,0,1,19.35278,20.29614L96,488l4.74561-23.72852a26.22151,26.22151,0,0,1,19.35278-20.29614L136,440l-15.90161-3.97534A26.22186,26.22186,0,0,1,100.74561,415.72852Z\"></path></g></svg>									\n					<h6>\n						Hollywood smile					</h6>\n							<h4>Removable Prosthesis</h4>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 106 106\" width=\"512\"><g><path d=\"m101.75 53.93c0-.41-.33-.76-.75-.76-.41 0-.75.32-.75.74-.26.57-1.84.93-4.24 1.14-.01-.71-.03-1.42-.04-2.11-.02-1.42-.05-2.84.04-4.25.1-1.7.99-3.13 1.56-4.7.62-1.73 1.15-3.5 1.57-5.28.68-2.95 1.42-6.74-.09-9.57-2.17-4.07-7.72-1.83-10.78-.31-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.12.35-.25.7-.38 1.04-.11-.07-.24-.12-.39-.12h-6.67v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.71c-.04-.09-.08-.18-.12-.28-.42-1.11-.73-2.25-1-3.4.08-.31.17-.62.25-.93.63-2.74 1.29-6.19.18-8.93.24-.22.56-.45.78-.54.59-.25 1.11-.3 1.73-.28 1.97.06 3.91.92 5.64 1.78.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.56-.28 1.14-.88 2.45-1.51 3.92-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.03.08-3.8 1.04-5.3 2.35-2.51-1.02-5.48-1.68-7.54-.04-2.41-3.11-7.47-1.05-10.34.38-.86.43-.11 1.72.76 1.3 1.77-.88 3.75-1.77 5.76-1.8.56-.01 1.21.08 1.65.28.46.21.83.53 1.07.87.67.95.84 2.19.87 3.38.03 1.56-.19 3.12-.51 4.65-.34 1.65-.8 3.28-1.33 4.88-.1.31-.22.61-.33.92h-7.09v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.74c-.76-1.96-1.29-4.02-1.64-6.09-.28-1.65-.46-3.43-.15-5.1.26-1.42.91-2.67 2.31-3.05 2.28-.62 4.95.67 6.93 1.66.86.43 1.62-.86.76-1.3-.18-.09-.37-.18-.57-.28 1.14-.88 2.45-1.51 3.93-1.54 1.64-.03 3.21.59 4.65 1.31.85.43 1.61-.86.75-1.29-1.72-.85-3.59-1.59-5.54-1.51-2.04.08-3.81 1.04-5.31 2.36-2.74-1.08-6.13-1.78-8.05.38-.71-.92-1.71-1.5-2.97-1.65-2.49-.3-5.06.85-7.23 1.93-.86.43-.11 1.72.76 1.3 1.87-.93 4.05-1.91 6.19-1.75 1.1.08 1.93.68 2.38 1.58-.63 1.51-.7 3.22-.59 4.83.08 1.18.26 2.36.49 3.53-.01.36-.23.84-.32 1.19-.1.39-.21.78-.33 1.16-.23.78-.48 1.55-.75 2.32h-6.61v-2.59c0-1.05-.84-1.91-1.86-1.91h-8.81c-1.03 0-1.86.85-1.86 1.91v2.59h-6.8c-.74-1.92-1.25-3.93-1.58-5.95-.26-1.61-.44-3.35-.13-4.96.26-1.39.89-2.59 2.27-2.96 2.23-.6 4.85.67 6.79 1.63.86.43 1.62-.86.76-1.3-.17-.09-.35-.17-.54-.26 1.09-.84 2.34-1.45 3.74-1.5 1.57-.05 3.07.51 4.46 1.19.86.42 1.61-.87.75-1.29-1.66-.81-3.47-1.48-5.35-1.38-1.97.11-3.67 1.04-5.13 2.31-3.06-1.21-6.96-1.95-8.62 1.41-.76 1.53-.85 3.33-.74 5.01.13 2.1.56 4.18 1.12 6.2.45 1.63 1.11 3.16 1.8 4.7.52 1.17.68 2.46.7 3.73.04 1.72-.14 3.42-.31 5.13-2.09-.22-3.47-.57-3.7-1.09-.01-.39-.34-.72-.75-.72s-.75.34-.75.75v25.18c0 .41.34.75.75.75h96c.2 0 .39-.08.53-.22s.22-.33.22-.53zm-8.28 12.46c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.05-.07.08-.15.11-.23 2.03-.02 3.85-.08 5.43-.2.05 3.32-.07 6.64-1.1 9.78zm-14.88-9.69c0 .01.12.55.09 1.36-2.32 1.91-2.77 4.92-2.91 7.78-.06 1.38-.04 2.77-.21 4.15-.04.3-.09 1.33-.57 1.18-.25-.08-.53-.56-.68-.76-.23-.31-.44-.64-.63-.98-1.44-2.52-2.02-5.47-2.5-8.3-.24-1.42-.13-2.89-.01-4.32.01-.14.03-.27.04-.41 2.57.11 5.03.2 7.37.27.01.01 0 .02.01.03zm1.52.01c2.61.07 5.05.11 7.27.11-.98 1.59-2.01 4.24-2.2 8.49-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.07-.82.01-1.49-.04-1.86zm-8.75-1.81c.11-1.13.22-2.26.27-3.39.06-1.41.05-2.89-.26-4.29h7.93v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.19c.06 0 .1-.02.16-.03-.19.84-.26 1.7-.28 2.59-.04 1.77.03 3.57.07 5.37-5.96.37-15.49.07-23.18-.25zm-8.05 11.49c-.47 1.43-1.16 3.14-2.25 4.22-.19.19-.7.6-.96.29-.12-.15-.06-.51-.06-.69-.02-.8-.04-1.61-.06-2.41.1.05.21.09.33.09.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.13 0-.25.04-.36.1-.08-2.93-.27-5.92-1.65-8.53.2-.35.39-.66.58-.92.25-.33.18-.8-.15-1.05s-.8-.18-1.05.15c-1.09 1.46-2.44 4.24-2.66 9.17-.21 4.69-1.12 7.04-1.9 7.23-.03.01-.1.03-.27-.09-.92-.63-2.15-3.56-2.52-7.22-.34-2.53-.47-5.08-.34-6.66.1-1.28-.09-2.17-.1-2.2-.09-.4-.49-.65-.89-.57-.4.09-.66.49-.57.89 0 .01.12.55.09 1.36-1.79 1.47-2.48 3.6-2.76 5.86-.26 2.17-.02 4.43-.44 6.58-.07.37-.2.9-.62.56-.44-.35-.76-.94-1.04-1.42-.65-1.08-1.11-2.25-1.48-3.45-.61-1.95-1.15-4.08-1.26-6.13-.07-1.32.02-2.65.15-3.97 4.65-.21 8.64-.38 11.4-.38 2.87-.04 7.07.16 11.94.38.07 3.51-.01 7-1.09 10.31zm-10.8-12.18c-.02 0-.03 0-.05 0-2.75 0-6.67.17-11.25.37.09-.84.17-1.67.23-2.51.08-1.34.09-2.69-.09-4.03-.04-.28-.1-.56-.17-.82h7.98v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h8.32c-.18.83-.25 1.68-.27 2.56-.03 1.58.02 3.19.06 4.81-4.82-.21-8.97-.38-11.86-.38zm-17.34-4.23c.01-.89.01-1.8.25-2.67.01-.03.02-.06.03-.09h4.21c.24.91.32 1.86.34 2.8.02 1.55-.12 3.09-.28 4.63-.18.01-.36.02-.54.02-1.22.06-2.55.12-3.96.18-.03-1.64-.08-3.27-.05-4.87zm-9.05-5.17h8.71c-.13.31-.26.61-.39.92h-8.33v-.92zm10.33 0h2.26c.13.31.27.61.4.92h-3.07c.14-.31.28-.62.41-.92zm12.71 0v.92h-8.46c-.12-.3-.25-.61-.38-.92zm1.5 2.62v-4.31h4.1v4.31zm15.16 5.51c-.02-1.42-.05-2.84.04-4.25.03-.51.14-.99.28-1.46h3.7c.32 1.24.35 2.55.32 3.82-.04 1.26-.18 2.52-.32 3.79-1.28-.05-2.49-.11-3.61-.16-.13-.01-.25-.01-.37-.02-.02-.58-.03-1.15-.04-1.72zm3.07-8.13c.13.3.26.61.39.92h-2.59c.13-.3.26-.61.39-.92zm11.92 2.62v-4.31h4.1v4.31zm14.38-1.6c-.02.04-.03.09-.05.13-.14-.14-.33-.24-.54-.24h-8.19v-.92h9.21c-.15.35-.28.69-.43 1.03zm-17.13-5.11c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm1.25 4.09v.92h-8.41c-.12-.31-.26-.61-.39-.92zm-11.35-2.48c.11.33.22.66.34.98h-.66c.11-.33.22-.65.32-.98zm-2.89 3.39h-8.81v-.92h9.19c-.12.31-.24.62-.38.92zm-17.15-5c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm-10.38.91c.17.57.36 1.13.57 1.68h-1.1c.18-.56.36-1.12.53-1.68zm-19.76-.91c0-.22.16-.41.36-.41h8.81c.2 0 .36.18.36.41v2.59h-1.19v-.36c0-.73-.59-1.33-1.32-1.33h-4.46c-.74 0-1.32.59-1.32 1.33v.36h-1.24zm6.84 2.39v4.31h-4.1v-4.31zm-14.54 1.7h8.94v.92h-8.56c-.12-.31-.25-.62-.38-.92zm1.02 3.12c-.04-.24-.09-.47-.15-.71h8.07v.36c0 .74.59 1.34 1.32 1.34h4.46c.73 0 1.32-.6 1.32-1.34v-.36h7.82c-.08.33-.15.66-.19 1-.23 2.21-.13 4.46-.06 6.69-7.66.32-17.04.61-22.76.22.11-1.07.23-2.14.29-3.21.08-1.33.08-2.66-.12-3.99zm22.63 9.01c.02 2.92-.07 5.87-.9 8.69-.42 1.44-1.04 2.82-1.9 4.06-.2.28-1 1.38-1.4.81-.12-.17-.04-.67-.05-.86-.01-.49-.02-.98-.03-1.47-.01-.24-.01-.49-.01-.73.12.26.38.44.68.44.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.31 0-.57.19-.69.46-.06-3.09-.21-6.24-1.65-9.01.19-.34.39-.65.57-.9.07-.1.11-.21.13-.32 1.69-.06 3.43-.13 5.24-.2.01.18.02.36.02.53zm-15.59 1c-1.77 1.47-2.45 3.59-2.72 5.83-.25 2.15.02 4.4-.45 6.51-.1.48-.3.72-.67.32-.4-.43-.72-.93-1.02-1.44-.62-1.09-1.07-2.26-1.43-3.46-.57-1.89-1.09-3.97-1.17-5.95-.04-1.05.02-2.11.11-3.16 2.03.17 4.48.24 7.29.24.04.23.07.61.06 1.11zm1.46-1.12c2.19-.02 4.58-.07 7.12-.15-.97 1.56-2 4.17-2.19 8.39-.2 4.6-1.1 6.91-1.86 7.1-.06.02-.15-.01-.25-.08-.9-.62-2.11-3.49-2.47-7.09-.33-2.49-.46-4.99-.33-6.54.05-.68.02-1.24-.02-1.63zm-13.85 21.55v-22.71c.83.34 2.05.59 3.57.77-.06.66-.11 1.32-.13 1.98-.08 2.23.37 4.47.93 6.62.34 1.3.76 2.59 1.33 3.81.5 1.07 1.19 2.45 2.18 3.15.59.42 1.34.43 1.94.03s.82-1.06.92-1.74c.2-1.28.21-2.58.26-3.87.07-2.01.15-4.48 1.32-6.24.02 1.47.15 3.21.39 4.98.32 3.12 1.43 7.01 3.12 8.15.39.27.76.35 1.06.35.16 0 .31-.02.43-.06 1.74-.44 2.74-3.3 2.97-8.48.1-2.33.47-4.1.94-5.46 1.08 2.89.93 6.19 1 9.23.02.68-.07 1.48.17 2.13.27.72.99 1.12 1.75 1.1 1.59-.06 2.57-1.89 3.21-3.12 2.03-3.91 2.22-8.29 2.16-12.66 1.31-.06 2.64-.11 4-.18.11-.01.21-.01.32-.01-.08.86-.15 1.72-.17 2.59-.06 2.25.42 4.54 1 6.71.35 1.31.78 2.6 1.36 3.82.28.58.59 1.15.95 1.69.32.47.7 1.03 1.18 1.38.03.39.35.69.74.69.29 0 .53-.17.65-.4.22-.05.43-.13.63-.27.57-.41.78-1.05.89-1.72.21-1.32.22-2.66.27-4 .07-2.05.16-4.56 1.37-6.34.02 1.5.15 3.29.39 5.11.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.96-4.27 3.13-9.55 3.05-14.62.09 0 .18.01.28.01 1.2.05 2.37.1 3.53.15-.16 1.69-.23 3.38.04 5.04.48 2.96 1.13 6.01 2.59 8.67.65 1.19 1.9 3.32 3.55 2.47 1.31-.67 1.25-2.59 1.31-3.86.13-2.59-.17-6.11 1.43-8.39.01 1.51.15 3.32.4 5.15.32 3.17 1.45 7.12 3.17 8.29.4.27.77.35 1.07.35.17 0 .31-.03.43-.06 1.77-.45 2.78-3.35 3.01-8.62.11-2.39.49-4.21.97-5.59.98 2.57.94 5.46 1 8.19.02.83.03 1.66.06 2.48.03.67.17 1.33.77 1.72 1.4.91 2.74-.3 3.5-1.4 2.89-4.18 3.12-9.32 3.06-14.29 1.82-.19 3.26-.46 4.21-.84v22.72h-94.51z\"></path><path d=\"m8.08 60.42c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m8.16 63.64h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 68.5h-.02c-.41 0-.74.34-.74.75s.34.75.76.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m10.41 70.63h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m7.79 74.36h-.02c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.74-.75z\"></path><path d=\"m13.54 73.89c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m13.73 75.85h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m18.12 71.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m16.73 73.47h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m19.89 75.35h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m23.09 74.28h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.25 76.16h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m26.19 74.41c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m29.35 74.78h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m30.74 72.65h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m33.9 74.53h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m33.83 72.78c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m37.75 73.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.39 71.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m36.65 69.97c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m38.5 67.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m38.56 64.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m36.15 66.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m38.05 60.54h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m37.84 58.74c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m38.14 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.44 60.18h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m97.36 64.91c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75z\"></path><path d=\"m96.98 69.02h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m94.36 71.15h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m96.98 74.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m91.98 73.66h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m91.04 76.36h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m86.65 72h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m88.04 73.99h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m84.88 75.87h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.68 74.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.52 76.67h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m78.58 73.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m75.42 75.3h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m74.03 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.87 75.05h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m70.94 71.8h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m67.21 73.17h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m68.87 69.74h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.96 68.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.21 66.04c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m69.37 66.42h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m66.72 62.56c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m66.93 59.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m66.63 76.5h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m41.55 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.4 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m64.3 72.24h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m62.38 75.03h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m46.3 75.98h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m47.74 72.91h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m51.26 73.83h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m54.54 75.13h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m58.44 73.87c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m58.64 75.97h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m20.17 31.3c-1 .44-1.97.98-3.05 1.22-1.31.29-2.56-.06-3.7-.72-.83-.48-1.58.81-.75 1.29 1.25.72 2.65 1.16 4.11.99 1.19-.14 2.27-.62 3.35-1.12.98-.45 1.99-.94 3.08-1.03 1.56-.13 2.97.55 4.23 1.41.79.54 1.54-.75.75-1.29-1.34-.91-2.87-1.62-4.52-1.63-1.24-.01-2.39.39-3.5.88z\"></path><path d=\"m31.61 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m30.22 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m32.33 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m23.91 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m21.33 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m22.99 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m22.41 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m14.22 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m12.75 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m15.24 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m12.81 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m22.32 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m21.2 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m14.35 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m16.81 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m80.73 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.45-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.27-.03-2.47.38-3.61.89z\"></path><path d=\"m91.97 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m90.58 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m92.69 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m84.27 60.63c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m81.68 60.9h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m83.34 64.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m82.77 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m74.58 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.11 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m75.6 61.02c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m73.17 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m82.68 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m81.56 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m74.7 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m77.17 58.77c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m50.57 30.99c-1.04.46-2.04 1.01-3.16 1.25-1.31.28-2.57-.09-3.71-.74-.83-.48-1.58.81-.75 1.29 1.26.72 2.66 1.17 4.12 1.01 1.23-.13 2.34-.63 3.46-1.15 1.01-.47 2.06-.98 3.19-1.05 1.57-.1 2.98.57 4.25 1.44.79.54 1.54-.75.75-1.29-1.34-.92-2.88-1.62-4.53-1.65-1.28-.03-2.48.38-3.62.89z\"></path><path d=\"m61.81 65.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m60.42 62.4c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m62.53 59.98c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m53.35 59.88c0 .41.34.75.75.75s.75-.34.75-.75-.34-.75-.75-.75c-.42 0-.75.33-.75.75z\"></path><path d=\"m52.27 61.65c0-.41-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.33.75-.75z\"></path><path d=\"m53.18 63.48h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m52.61 65.79h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m44.42 65.73c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m42.95 61.56h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m45.44 59.52h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m43.01 59.48c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.33.75.75.75z\"></path><path d=\"m52.52 68.31h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m51.4 58.9c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01c-.41 0-.74.34-.74.75s.34.75.75.75z\"></path><path d=\"m44.54 67.01h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.33-.75-.75-.75z\"></path><path d=\"m47.01 57.27h-.01c-.41 0-.74.34-.74.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75z\"></path><path d=\"m18.18 51.72h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.06.84 1.91 1.86 1.91z\"></path><path d=\"m58.21 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path><path d=\"m88.35 47.72c-.41 0-.75.34-.75.75v1.35c0 .22-.16.41-.36.41h-8.76c-.2 0-.36-.18-.36-.41v-1.16c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.16c0 1.05.84 1.91 1.86 1.91h8.76c1.03 0 1.86-.85 1.86-1.91v-1.35c0-.42-.34-.75-.75-.75z\"></path></g></svg>									\n					<h6>\n						Complete dentures					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m61 55.184v-46.368c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3h-4v-1c0-.553-.448-1-1-1h-46c-.552 0-1 .447-1 1v1h-4c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v46.369c-1.161.413-2 1.513-2 2.815 0 1.654 1.346 3 3 3h5v1c0 .553.448 1 1 1h44c.552 0 1-.447 1-1v-1h5c1.654 0 3-1.346 3-3 0-1.302-.839-2.402-2-2.816zm-44-8.184c.986 0 1.877-.372 2.575-.965.699 1.171 1.965 1.965 3.425 1.965 1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382 1.46 0 2.726-.794 3.425-1.965.698.593 1.589.965 2.575.965 1.252 0 2.358-.59 3.092-1.494l2.908 2.908v4.586h-42v-4.586l2.908-2.908c.734.904 1.84 1.494 3.092 1.494zm8-3c0 1.103-.897 2-2 2s-2-.897-2-2v-1-3h4zm-6-1c0 1.103-.897 2-2 2s-2-.897-2-2v-4h4zm8-3h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm6 0h4v3 1c0 1.103-.897 2-2 2s-2-.897-2-2zm6-1h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zm10 15v-6c0-.266-.105-.52-.293-.707l-3.761-3.761c.024-.176.054-.35.054-.532v-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1h-5-6-6-5c0-.553-.448-1-1-1h-6c-.552 0-1 .447-1 1v5c0 .182.03.356.054.532l-3.761 3.761c-.188.187-.293.441-.293.707v6 1h-4v-22h54v22h-4zm-47-45v1 4c0 .155.036.309.105.447l2.959 5.918c-.033.208-.064.417-.064.635v5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h5c0 .553.448 1 1 1h8 8c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1h5c.552 0 1-.447 1-1v-4.796l2.919-6.811c.054-.123.081-.257.081-.393v-4-1h3v22h-54v-22zm44.023 9.409c-.735-.855-1.81-1.409-3.023-1.409-1.46 0-2.726.794-3.425 1.965-.698-.593-1.589-.965-2.575-.965-1.61 0-2.992.961-3.626 2.335-.891-.821-2.07-1.335-3.374-1.335-1.641 0-3.088.806-4 2.031-.912-1.225-2.359-2.031-4-2.031-1.304 0-2.483.514-3.374 1.335-.634-1.374-2.016-2.335-3.626-2.335-.986 0-1.877.372-2.575.965-.699-1.171-1.965-1.965-3.425-1.965-1.092 0-2.082.442-2.805 1.154l-2.195-4.39v-2.764h44v2.795zm-19.023 5.591c0-1.654 1.346-3 3-3s3 1.346 3 3v3h-6zm8 0v-2c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm6-2v-1c0-1.103.897-2 2-2s2 .897 2 2v4h-4zm-16 5h-6v-3c0-1.654 1.346-3 3-3s3 1.346 3 3zm-14-5v3h-4v-4c0-1.103.897-2 2-2s2 .897 2 2zm2 0c0-1.103.897-2 2-2s2 .897 2 2v2 2h-4zm41-17c.551 0 1 .448 1 1s-.449 1-1 1h-4v-2zm-6-2v6h-44v-6zm-50 2h4v2h-4c-.551 0-1-.448-1-1s.449-1 1-1zm0 54c-.551 0-1-.448-1-1s.449-1 1-1h5v2zm7 2v-6h42v6zm49-2h-5v-2h5c.551 0 1 .448 1 1s-.449 1-1 1z\"></path></svg>									\n					<h6>\n						Removable partial denture					</h6>\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Outline\" viewBox=\"0 0 512 512\"><g id=\"Bridge\"><path d=\"m271.62012 190.22119h-31.24024a4.0002 4.0002 0 0 0 -4 4v27.24024h-7.88281a6.00284 6.00284 0 0 0 -4.99219 9.32812l27.50244 41.25391a6.00149 6.00149 0 0 0 9.98487.00049l27.50293-41.25395a6.00309 6.00309 0 0 0 -4.99219-9.32861h-7.88281v-27.2402a4.0002 4.0002 0 0 0 -4-4zm8.14551 39.24024-23.76563 35.64892-23.76562-35.64892h6.1455a6.00656 6.00656 0 0 0 6-6v-25.24024h23.24024v25.24024a6.00656 6.00656 0 0 0 6 6z\"></path><path d=\"m98.34326 181.79248h63.45117a35.26748 35.26748 0 0 0 31.23975-18.9624 35.2678 35.2678 0 0 0 31.24023 18.9624h63.45118a35.2678 35.2678 0 0 0 31.24023-18.9624 35.26748 35.26748 0 0 0 31.23975 18.9624h63.45117a35.28 35.28 0 0 0 35.24026-35.24023v-31.23973a35.36638 35.36638 0 0 0 -30.34082-34.9009c-11.34552-1.57468-22.10945 11.65576-36.625 11.65576-14.47514 0-25.31535-13.232-36.624-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34087-18.67426c-11.33942-1.5741-22.111 11.65576-36.625 11.65576-14.47515 0-25.31584-13.232-36.62451-11.65576a35.29862 35.29862 0 0 0 -26.34131 18.67426 35.298 35.298 0 0 0 -26.34082-18.67426c-11.33938-1.57437-22.11048 11.65576-36.62451 11.65576-14.47515 0-25.31586-13.23216-36.62451-11.65576a35.36638 35.36638 0 0 0 -30.34134 34.9009v31.23973a35.28 35.28 0 0 0 35.24026 35.24023zm4.35742-8c2.27271-12.24963 14.98865-17.87549 26.88233-17.87549s24.60962 5.62586 26.88232 17.87549zm252.834 0c2.2727-12.24963 14.98865-17.87549 26.88232-17.87549 11.89319 0 24.60913 5.62586 26.88184 17.87549zm-9.12451-85.457c7.18953-1.01186 19.30718 11.73193 35.521 11.73193 16.18118 0 28.32091-12.73243 35.522-11.73193a27.33235 27.33235 0 0 1 23.44383 26.97704v31.23973a27.27624 27.27624 0 0 1 -23.54471 26.98275c-2.37109-16.83435-18.74-25.618-34.9353-25.618-16.23425 0-32.64331 8.82483-34.95337 25.73755a27.278 27.278 0 0 1 -24.4978-27.10229v-31.23974a27.33235 27.33235 0 0 1 23.44434-26.97707zm-125.93164 0c7.20057-1.00175 19.3254 11.73193 35.52148 11.73193 16.18118 0 28.32089-12.73227 35.522-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.27084 27.27084 0 0 1 -27.24023 27.24023h-63.45122a27.27084 27.27084 0 0 1 -27.24023-27.24023v-31.23976a27.33235 27.33235 0 0 1 23.44434-26.97707zm-149.37553 26.97704a27.33235 27.33235 0 0 1 23.44436-26.97707c7.18954-1.01186 19.30767 11.73193 35.52149 11.73193 16.17475 0 28.32325-12.73187 35.52148-11.73193a27.33235 27.33235 0 0 1 23.44385 26.97707v31.23973a27.278 27.278 0 0 1 -24.4978 27.10229c-2.31006-16.91272-18.71912-25.73754-34.95338-25.73754-16.1958 0-32.5647 8.78363-34.93579 25.618a27.27615 27.27615 0 0 1 -23.54421-26.98275z\"></path><path d=\"m427.81982 267.51855h-11.61962v-27.24023a19.64261 19.64261 0 0 0 -19.62012-19.62012h-31.24024a19.64219 19.64219 0 0 0 -19.61963 19.62012v27.24023h-35.67871c-12.92041 0-24.43017 6.4712-30.03759 16.88868-10.2874 19.1145-37.723 19.10915-48.0083-.00049-5.60694-10.417-17.1167-16.88819-30.03711-16.88819h-35.67871v-27.24023a19.64219 19.64219 0 0 0 -19.61963-19.62012h-31.24024a19.64261 19.64261 0 0 0 -19.62012 19.62012v27.24023h-11.61962a50.91762 50.91762 0 0 0 -50.86036 50.85987v78.1001a35.2799 35.2799 0 0 0 35.24024 35.23974h374.87988a35.2799 35.2799 0 0 0 35.24024-35.23974v-78.1001a50.91762 50.91762 0 0 0 -50.86036-50.85987zm-4 19.61963v46.86036a42.45288 42.45288 0 0 1 -17.15282 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.618-39.24024-26.64311-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.633 11.633 0 0 1 11.62011-11.61963h62.48a11.63261 11.63261 0 0 1 11.6196 11.61963zm-58.48-58.48h31.24024a11.63345 11.63345 0 0 1 11.62012 11.62012v27.24023h-54.48v-27.24021a11.633 11.633 0 0 1 11.61966-11.62012zm-191.43994 58.48v46.86036a42.45288 42.45288 0 0 1 -17.15283 34.24169 3.82547 3.82547 0 0 1 -6.08691-3.07031v-38.98144c0-25.671-39.24024-26.58616-39.24024.9497v38.03174a3.82512 3.82512 0 0 1 -6.08642 3.07031 42.452 42.452 0 0 1 -17.15332-34.24169v-46.86036a11.63261 11.63261 0 0 1 11.61964-11.61963h62.48a11.633 11.633 0 0 1 11.6201 11.61963zm-58.48-58.48h31.24024a11.633 11.633 0 0 1 11.61963 11.62012v27.24023h-54.48v-27.24021a11.63345 11.63345 0 0 1 11.62017-11.62012zm355.2603 167.82034a27.27073 27.27073 0 0 1 -27.24024 27.23974h-374.87988a27.27073 27.27073 0 0 1 -27.24024-27.23974v-78.1001a42.9067 42.9067 0 0 1 42.70484-42.8559 19.48916 19.48916 0 0 0 -3.84448 11.61566v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83053 11.83053 0 0 0 18.88623-9.47071v-38.03174c0-16.90651 23.24024-16.08468 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48835 19.48835 0 0 0 -3.84765-11.61963h23.90625c9.97265 0 18.7832 4.85889 22.99267 12.67969a35.25039 35.25039 0 0 0 62.09717.00049c4.21-7.82129 13.02051-12.68018 22.99316-12.68018h23.90625a19.48835 19.48835 0 0 0 -3.84765 11.61963v46.86036a50.38558 50.38558 0 0 0 20.35351 40.64209 11.83142 11.83142 0 0 0 18.88623-9.47071v-38.03174c0-16.96852 23.24024-16.04747 23.24024-.9497v38.98144a11.83118 11.83118 0 0 0 18.88623 9.47071 50.38558 50.38558 0 0 0 20.35351-40.64209v-46.86036a19.48916 19.48916 0 0 0 -3.84448-11.61566 42.9067 42.9067 0 0 1 42.70484 42.8559z\"></path></g></svg>									\n					<h6>\n						Implant retained complete or partial overdenture					</h6>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-04-07 11:27:18', '2026-04-07 11:27:18', '', 10, 'https://mrarif.me/drsarah/?p=437', 0, 'revision', '', 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpd_termmeta`
--

CREATE TABLE `wpd_termmeta` (
  `meta_id` bigint(20) UNSIGNED NOT NULL,
  `term_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpd_terms`
--

CREATE TABLE `wpd_terms` (
  `term_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT 0
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpd_terms`
--

INSERT INTO `wpd_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Uncategorized', 'uncategorized', 0),
(2, 'Primary', 'primary', 0),
(3, 'header', 'header', 0),
(4, 'footer', 'footer', 0),
(5, 'popup', 'popup', 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpd_term_relationships`
--

CREATE TABLE `wpd_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
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpd_term_relationships`
--

INSERT INTO `wpd_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(1, 1, 0),
(18, 2, 0),
(17, 2, 0),
(16, 2, 0),
(45, 3, 0),
(262, 4, 0),
(265, 4, 0),
(392, 5, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpd_term_taxonomy`
--

CREATE TABLE `wpd_term_taxonomy` (
  `term_taxonomy_id` bigint(20) UNSIGNED NOT NULL,
  `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
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpd_term_taxonomy`
--

INSERT INTO `wpd_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 1),
(2, 2, 'nav_menu', '', 0, 3),
(3, 3, 'elementor_library_type', '', 0, 1),
(4, 4, 'elementor_library_type', '', 0, 1),
(5, 5, 'elementor_library_type', '', 0, 1);

-- --------------------------------------------------------

--
-- Table structure for table `wpd_usermeta`
--

CREATE TABLE `wpd_usermeta` (
  `umeta_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpd_usermeta`
--

INSERT INTO `wpd_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'nickname', 'web-admin'),
(2, 1, 'first_name', ''),
(3, 1, 'last_name', ''),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'syntax_highlighting', 'true'),
(7, 1, 'comment_shortcuts', 'false'),
(8, 1, 'admin_color', 'fresh'),
(9, 1, 'use_ssl', '0'),
(10, 1, 'show_admin_bar_front', 'true'),
(11, 1, 'locale', ''),
(12, 1, 'wpd_capabilities', 'a:1:{s:13:\"administrator\";b:1;}'),
(13, 1, 'wpd_user_level', '10'),
(14, 1, 'dismissed_wp_pointers', 'theme_editor_notice'),
(15, 1, 'show_welcome_panel', '0'),
(16, 1, 'session_tokens', 'a:3:{s:64:\"676030fa2308d0a5f7c46f47ef2f604ff12aff3f7275a891f2d0f4d5f00b9a2b\";a:4:{s:10:\"expiration\";i:1776584884;s:2:\"ip\";s:12:\"45.120.96.21\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36\";s:5:\"login\";i:1775375284;}s:64:\"58913de7841fc0e032117ae2a60f74b0bb9919ae6880337f399644ab659c4a0e\";a:4:{s:10:\"expiration\";i:1775713374;s:2:\"ip\";s:12:\"45.120.96.21\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36\";s:5:\"login\";i:1775540574;}s:64:\"c7e28726b565cbe067f04d965c1a6b82c0ff4a02d7d785e455970b4754af28da\";a:4:{s:10:\"expiration\";i:1775733930;s:2:\"ip\";s:12:\"45.120.96.21\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36\";s:5:\"login\";i:1775561130;}}'),
(17, 1, 'wpd_dashboard_quick_press_last_post_id', '5'),
(18, 1, 'community-events-location', 'a:1:{s:2:\"ip\";s:11:\"45.120.96.0\";}'),
(19, 1, 'elementor_introduction', 'a:2:{s:27:\"e-editor-one-notice-pointer\";b:1;s:20:\"globals_introduction\";b:1;}'),
(20, 1, 'astra-sites-on-active', 'notice-dismissed'),
(21, 1, 'managenav-menuscolumnshidden', 'a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),
(22, 1, 'metaboxhidden_nav-menus', 'a:2:{i:0;s:12:\"add-post_tag\";i:1;s:15:\"add-post_format\";}'),
(23, 1, 'nav_menu_recently_edited', '2'),
(24, 1, 'wpd_user-settings', 'editor=tinymce&libraryContent=browse'),
(25, 1, 'wpd_user-settings-time', '1775570816'),
(26, 1, 'wpd_elementor_connect_common_data', 'a:7:{s:9:\"client_id\";s:32:\"eiKpQVNLyjuRel2yI2CxTp7XcXsjIGZP\";s:11:\"auth_secret\";s:32:\"KYDpqJvYZvwdi0HcQYl6ubcqPzuZonSf\";s:12:\"access_token\";s:295:\"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI2MTQ4NjIiLCJhdWQiOiJodHRwczovL21yYXJpZi5tZS9kcnNhcmFoLyIsImNsaWVudF9pZCI6ImVpS3BRVk5MeWp1UmVsMnlJMkN4VHA3WGNYc2pJR1pQIiwiY29ubmVjdF90eXBlIjoiYWN0aXZhdGUiLCJpYXQiOjE3NzUzNzUyOTYsImV4cCI6MzE3MzE5ODE3Njk2fQ.m6fC2F7VtznhMDyCI_HkTQsYMerNqsYkmbe4Q3WsBS8\";s:19:\"access_token_secret\";s:32:\"i6uMPm2GACTHC8jcJqTqCc2GCVi2uguv\";s:10:\"token_type\";s:6:\"bearer\";s:4:\"user\";O:8:\"stdClass\":2:{s:5:\"email\";s:21:\"arifbabu587@gmail.com\";s:10:\"first_name\";s:4:\"Arif\";}s:19:\"data_share_opted_in\";b:1;}'),
(27, 1, 'astra-optin-notice', 'notice-dismissed');

-- --------------------------------------------------------

--
-- Table structure for table `wpd_users`
--

CREATE TABLE `wpd_users` (
  `ID` bigint(20) UNSIGNED NOT NULL,
  `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 ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpd_users`
--

INSERT INTO `wpd_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'web-admin', '$wp$2y$10$k9ix.DzB9JBEsj/xtgWkP.Wt9QXYV7EadyZ41Zm.d6nk7W3dHd1ju', 'web-admin', 'arifwebsols@gmail.com', 'https://mrarif.me/drsarah', '2026-04-05 07:05:10', '', 0, 'web-admin');

--
-- Indexes for dumped tables
--

--
-- Indexes for table `wpd_commentmeta`
--
ALTER TABLE `wpd_commentmeta`
  ADD PRIMARY KEY (`meta_id`),
  ADD KEY `comment_id` (`comment_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `wpd_comments`
--
ALTER TABLE `wpd_comments`
  ADD PRIMARY KEY (`comment_ID`),
  ADD KEY `comment_post_ID` (`comment_post_ID`),
  ADD KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  ADD KEY `comment_date_gmt` (`comment_date_gmt`),
  ADD KEY `comment_parent` (`comment_parent`),
  ADD KEY `comment_author_email` (`comment_author_email`(10));

--
-- Indexes for table `wpd_e_events`
--
ALTER TABLE `wpd_e_events`
  ADD PRIMARY KEY (`id`),
  ADD KEY `created_at_index` (`created_at`);

--
-- Indexes for table `wpd_e_notes`
--
ALTER TABLE `wpd_e_notes`
  ADD PRIMARY KEY (`id`),
  ADD KEY `route_url_index` (`route_url`(191)),
  ADD KEY `post_id_index` (`post_id`),
  ADD KEY `element_id_index` (`element_id`),
  ADD KEY `parent_id_index` (`parent_id`),
  ADD KEY `author_id_index` (`author_id`),
  ADD KEY `status_index` (`status`),
  ADD KEY `is_resolved_index` (`is_resolved`),
  ADD KEY `is_public_index` (`is_public`),
  ADD KEY `created_at_index` (`created_at`),
  ADD KEY `updated_at_index` (`updated_at`),
  ADD KEY `last_activity_at_index` (`last_activity_at`);

--
-- Indexes for table `wpd_e_notes_users_relations`
--
ALTER TABLE `wpd_e_notes_users_relations`
  ADD PRIMARY KEY (`id`),
  ADD KEY `type_index` (`type`),
  ADD KEY `note_id_index` (`note_id`),
  ADD KEY `user_id_index` (`user_id`);

--
-- Indexes for table `wpd_e_submissions`
--
ALTER TABLE `wpd_e_submissions`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `hash_id_unique_index` (`hash_id`),
  ADD KEY `main_meta_id_index` (`main_meta_id`),
  ADD KEY `hash_id_index` (`hash_id`),
  ADD KEY `type_index` (`type`),
  ADD KEY `post_id_index` (`post_id`),
  ADD KEY `element_id_index` (`element_id`),
  ADD KEY `campaign_id_index` (`campaign_id`),
  ADD KEY `user_id_index` (`user_id`),
  ADD KEY `user_ip_index` (`user_ip`),
  ADD KEY `status_index` (`status`),
  ADD KEY `is_read_index` (`is_read`),
  ADD KEY `created_at_gmt_index` (`created_at_gmt`),
  ADD KEY `updated_at_gmt_index` (`updated_at_gmt`),
  ADD KEY `created_at_index` (`created_at`),
  ADD KEY `updated_at_index` (`updated_at`),
  ADD KEY `referer_index` (`referer`(191)),
  ADD KEY `referer_title_index` (`referer_title`(191));

--
-- Indexes for table `wpd_e_submissions_actions_log`
--
ALTER TABLE `wpd_e_submissions_actions_log`
  ADD PRIMARY KEY (`id`),
  ADD KEY `submission_id_index` (`submission_id`),
  ADD KEY `action_name_index` (`action_name`),
  ADD KEY `status_index` (`status`),
  ADD KEY `created_at_gmt_index` (`created_at_gmt`),
  ADD KEY `updated_at_gmt_index` (`updated_at_gmt`),
  ADD KEY `created_at_index` (`created_at`),
  ADD KEY `updated_at_index` (`updated_at`);

--
-- Indexes for table `wpd_e_submissions_values`
--
ALTER TABLE `wpd_e_submissions_values`
  ADD PRIMARY KEY (`id`),
  ADD KEY `submission_id_index` (`submission_id`),
  ADD KEY `key_index` (`key`);

--
-- Indexes for table `wpd_links`
--
ALTER TABLE `wpd_links`
  ADD PRIMARY KEY (`link_id`),
  ADD KEY `link_visible` (`link_visible`);

--
-- Indexes for table `wpd_options`
--
ALTER TABLE `wpd_options`
  ADD PRIMARY KEY (`option_id`),
  ADD UNIQUE KEY `option_name` (`option_name`),
  ADD KEY `autoload` (`autoload`);

--
-- Indexes for table `wpd_postmeta`
--
ALTER TABLE `wpd_postmeta`
  ADD PRIMARY KEY (`meta_id`),
  ADD KEY `post_id` (`post_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `wpd_posts`
--
ALTER TABLE `wpd_posts`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `post_name` (`post_name`(191)),
  ADD KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  ADD KEY `post_parent` (`post_parent`),
  ADD KEY `post_author` (`post_author`),
  ADD KEY `type_status_author` (`post_type`,`post_status`,`post_author`);

--
-- Indexes for table `wpd_termmeta`
--
ALTER TABLE `wpd_termmeta`
  ADD PRIMARY KEY (`meta_id`),
  ADD KEY `term_id` (`term_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `wpd_terms`
--
ALTER TABLE `wpd_terms`
  ADD PRIMARY KEY (`term_id`),
  ADD KEY `slug` (`slug`(191)),
  ADD KEY `name` (`name`(191));

--
-- Indexes for table `wpd_term_relationships`
--
ALTER TABLE `wpd_term_relationships`
  ADD PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  ADD KEY `term_taxonomy_id` (`term_taxonomy_id`);

--
-- Indexes for table `wpd_term_taxonomy`
--
ALTER TABLE `wpd_term_taxonomy`
  ADD PRIMARY KEY (`term_taxonomy_id`),
  ADD UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  ADD KEY `taxonomy` (`taxonomy`);

--
-- Indexes for table `wpd_usermeta`
--
ALTER TABLE `wpd_usermeta`
  ADD PRIMARY KEY (`umeta_id`),
  ADD KEY `user_id` (`user_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `wpd_users`
--
ALTER TABLE `wpd_users`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `user_login_key` (`user_login`),
  ADD KEY `user_nicename` (`user_nicename`),
  ADD KEY `user_email` (`user_email`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `wpd_commentmeta`
--
ALTER TABLE `wpd_commentmeta`
  MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wpd_comments`
--
ALTER TABLE `wpd_comments`
  MODIFY `comment_ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `wpd_e_events`
--
ALTER TABLE `wpd_e_events`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wpd_e_notes`
--
ALTER TABLE `wpd_e_notes`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wpd_e_notes_users_relations`
--
ALTER TABLE `wpd_e_notes_users_relations`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wpd_e_submissions`
--
ALTER TABLE `wpd_e_submissions`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `wpd_e_submissions_actions_log`
--
ALTER TABLE `wpd_e_submissions_actions_log`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `wpd_e_submissions_values`
--
ALTER TABLE `wpd_e_submissions_values`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `wpd_links`
--
ALTER TABLE `wpd_links`
  MODIFY `link_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wpd_options`
--
ALTER TABLE `wpd_options`
  MODIFY `option_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1386;

--
-- AUTO_INCREMENT for table `wpd_postmeta`
--
ALTER TABLE `wpd_postmeta`
  MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4801;

--
-- AUTO_INCREMENT for table `wpd_posts`
--
ALTER TABLE `wpd_posts`
  MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=439;

--
-- AUTO_INCREMENT for table `wpd_termmeta`
--
ALTER TABLE `wpd_termmeta`
  MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wpd_terms`
--
ALTER TABLE `wpd_terms`
  MODIFY `term_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `wpd_term_taxonomy`
--
ALTER TABLE `wpd_term_taxonomy`
  MODIFY `term_taxonomy_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `wpd_usermeta`
--
ALTER TABLE `wpd_usermeta`
  MODIFY `umeta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=28;

--
-- AUTO_INCREMENT for table `wpd_users`
--
ALTER TABLE `wpd_users`
  MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
COMMIT;

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
